How can I see multiple results in a Jupyter notebook?
I already addressed the topic in the last post, but apparently it is not directly connected with "print". So how do I see the output of these lines?
egf := (1 + x*exp(x*z + z))/(x + 1);
c := n -> normal(n!*coeff(series(egf, z, 9), z, n));
for n from 0 to 6 do
seq(coeff(c(n), x, k), k = 0 .. n);
end do;
What I expect is:
1
0, 1
0, 1, 1
0, 1, 2, 1
0, 1, 3, 3, 1
0, 1, 4, 6, 4, 1
0, 1, 5, 10, 10, 5, 1
What I get is:
0, 1, 5, 10, 10, 5, 1
This is just unreal!
--- SoupGate-Win32 v1.05
* Origin: fsxNet Usenet Gateway (21:1/5)