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!)
A359936 Expansion of Product_{k>=0} (1 - x^(k^2+1)) in powers of x. 7
1, -1, -1, 1, 0, -1, 1, 1, -1, 0, -1, 1, 1, -1, 0, 1, -1, -2, 2, 1, -1, 0, 1, -1, -1, 1, -1, 2, 0, -2, 1, 1, -2, 0, 2, -1, 1, -2, 0, 2, -1, -1, 2, 1, -3, 0, 1, 1, -2, 0, 1, 0, 0, -1, 3, 0, -3, 0, 2, -2, 1, 1, -2, 2, -2, -2, 4, 2, -4, 1, 2, -3, -1, 1, 2, 1, -1, -3, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,18
LINKS
FORMULA
a(0) = 1; a(n) = -(1/n) * Sum_{k=1..n} A359937(k) * a(n-k).
PROG
(PARI) my(N=100, x='x+O('x^N)); Vec(prod(k=0, sqrtint(N), 1-x^(k^2+1)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=-sum(j=1, i, sumdiv(j, d, issquare(d-1)*d)*v[i-j+1])/i); v;
CROSSREFS
Sequence in context: A329171 A326918 A328698 * A317529 A285194 A039978
KEYWORD
sign,look
AUTHOR
Seiichi Manyama, Jan 19 2023
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 July 17 04:55 EDT 2024. Contains 374360 sequences. (Running on oeis4.)