This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A360002 #11 Jan 21 2023 11:51:40 %S A360002 1,0,0,0,0,-1,-1,0,0,-1,0,1,0,0,0,1,0,0,0,1,0,-1,0,1,0,-1,1,1,-1,-1,0, %T A360002 0,-1,0,1,1,0,0,0,1,-1,-2,0,0,-1,-1,2,1,0,0,2,1,-1,-1,-1,0,-2,-1,1,2, %U A360002 -1,0,2,1,-2,-1,2,-1,-1,-1,2,0,0,0,2,1,-2,-1,1,0,-4,0,2 %N A360002 Expansion of Product_{k>=0} (1 - x^(k^2+5)) in powers of x. %H A360002 Seiichi Manyama, <a href="/A360002/b360002.txt">Table of n, a(n) for n = 0..10000</a> %o A360002 (PARI) my(N=100, x='x+O('x^N)); Vec(prod(k=0, sqrtint(N), 1-x^(k^2+5))) %o A360002 (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-5)*d)*v[i-j+1])/i); v; %Y A360002 Cf. A276516, A359936, A359966, A359980, A360001, A360003. %K A360002 sign,look %O A360002 0,42 %A A360002 _Seiichi Manyama_, Jan 21 2023