peter....@gmail.com
unread,Apr 30, 2023, 6:24:30 AMApr 30Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Sign in to report message as abuse
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
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!