login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A279485 Expansion of Product_{k>=1} (1-x^(k^4)). 4
1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0
COMMENTS
The difference between the number of partitions of n into an even number of distinct fourth powers and the number of partitions of n into an odd number of distinct fourth powers. - Ilya Gutkovskiy, Jan 27 2018
LINKS
MATHEMATICA
nn = 6; CoefficientList[Series[Product[(1-x^(k^4)), {k, nn}], {x, 0, nn^4}], x]
nmax = 1000; nn = Floor[nmax^(1/4)]+1; poly = ConstantArray[0, nn^4 + 1]; poly[[1]] = 1; poly[[2]] = -1; poly[[3]] = 0; Do[Do[poly[[j + 1]] -= poly[[j - k^4 + 1]], {j, nn^4, k^4, -1}]; , {k, 2, nn}]; Take[poly, nmax+1]
CROSSREFS
Sequence in context: A016422 A016399 A016383 * A298859 A216280 A370118
KEYWORD
sign
AUTHOR
Vaclav Kotesovec, Dec 13 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)