A279487 Indices k such that A279485(k) = 0.
2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70
Offset: 1
Keywords
Examples
3 is in the sequence because A279485(3) = 0 16 is not in the sequence because A279485(16) = -1 57767766 is in the sequence because A279485(57767766) = 0 64674419 is in the sequence because A279485(64674419) = 0
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 1..100000
Programs
-
Mathematica
nn = 10; A279485 = Rest[CoefficientList[Series[Product[(1-x^(k^4)), {k, nn}], {x, 0, nn^4}], x]]; Select[Range[nn^4], A279485[[#]]==0&] nmax = 10000; 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}]; A279485 = Take[poly, {2, nmax+1}]; Select[Range[nmax], A279485[[#]]==0&]
Comments