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!)
A323633 Expansion of 1/Sum_{k>=0} x^(k^3). 7
1, -1, 1, -1, 1, -1, 1, -1, 0, 1, -2, 3, -4, 5, -6, 7, -7, 6, -4, 1, 3, -8, 14, -21, 28, -34, 38, -40, 38, -31, 18, 2, -29, 62, -99, 139, -178, 211, -232, 234, -210, 154, -62, -70, 242, -449, 680, -917, 1135, -1303, 1386, -1344, 1136, -725, 85, 794, -1898, 3183, -4571 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,11
COMMENTS
Convolution inverse of A010057.
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=1..n} A010057(k) * a(n-k). - Seiichi Manyama, Mar 19 2022
MAPLE
a:=series(1/add(x^(k^3), k=0..100), x=0, 59): seq(coeff(a, x, n), n=0..58); # Paolo P. Lava, Apr 02 2019
MATHEMATICA
nmax = 58; CoefficientList[Series[1/Sum[x^k^3, {k, 0, nmax}], {x, 0, nmax}], x]
a[0] = 1; a[n_] := a[n] = -Sum[Boole[IntegerQ[k^(1/3)]] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 58}]
PROG
(PARI) my(N=66, x='x+O('x^N)); Vec(1/sum(k=0, N^(1/3), x^k^3)) \\ Seiichi Manyama, Mar 19 2022
(PARI) a(n) = if(n==0, 1, -sum(k=1, n, ispower(k, 3)*a(n-k))); \\ Seiichi Manyama, Mar 19 2022
CROSSREFS
Sequence in context: A117656 A101918 A291169 * A363275 A291567 A132125
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jan 21 2019
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 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)