OFFSET
0,6
COMMENTS
Number of ways to write n as an ordered sum of 4 powers of 2. - Ilya Gutkovskiy, Feb 02 2021
LINKS
Robert Israel, Table of n, a(n) for n = 0..10000
MAPLE
N:= 10: # for a(0) .. a(2^N)
g:= add(x^(2^i), i=0..N)^4:
S:= series(g, x, 2^N+1):
seq(coeff(S, x, j), j=0..2^N); # Robert Israel, Mar 27 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 22 2009
STATUS
approved