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 A209444 #8 Jan 03 2018 17:54:06 %S A209444 1,16,224,2240,13632,58464,219520,930176,3805824,11930320,33558336, %T A209444 122352192,440858880,1176756448,3112368896,11008771200,35248366848, %U A209444 89371035936,232665100640,727171963840,2289378446208,5950875374080,13907284255872,43816224486528 %N A209444 a(n) = Pell(n)*A000143(n) for n>=1 with a(0)=1, where A000143(n) is the number of ways of writing n as a sum of 8 squares. %C A209444 Compare g.f. to the Lambert series of A000143: 1 + 16*Sum_{n>=1} n^3*x^n/(1 - (-x)^n). %H A209444 G. C. Greubel, <a href="/A209444/b209444.txt">Table of n, a(n) for n = 0..1000</a> %F A209444 G.f.: 1 + 16*Sum_{n>=1} Pell(n)*n^3*x^n/(1 - A002203(n)*(-x)^n + (-1)^n*x^(2*n)), where A002203(n) = Pell(n-1) + Pell(n+1). %e A209444 G.f.: A(x) = 1 + 16*x + 112*x^2 + 896*x^3 + 3408*x^4 + 10080*x^5 +... %e A209444 where A(x) = 1 + 1*16*x + 2*112*x^2 + 5*448*x^3 + 12*1136*x^4 + 29*2016*x^5 + 70*3136*x^6 + 169*5504*x^7 + 408*9328*x^8 +...+ Pell(n)*A000143(n)*x^n +... %e A209444 The g.f. is also given by the identity: %e A209444 A(x) = 1 + 16*( 1*1*x/(1+2*x-x^2) + 2*8*x^2/(1-6*x^2+x^4) + 5*27*x^3/(1+14*x^3-x^6) + 12*64*x^4/(1-34*x^4+x^8) + 29*125*x^5/(1+82*x^5-x^10) + 70*216*x^6/(1-198*x^6+x^12) + 169*343*x^7/(1+478*x^7-x^14) +...). %t A209444 A000143:= Table[SquaresR[8, n], {n, 0, 200}]; Join[{1}, Table[Fibonacci[n, 2]*A000143[[n + 1]], {n, 1, 50}]] (* _G. C. Greubel_, Jan 02 2018 *) %o A209444 (PARI) {Pell(n)=polcoeff(x/(1-2*x-x^2+x*O(x^n)),n)} %o A209444 {A002203(n)=Pell(n-1)+Pell(n+1)} %o A209444 {a(n)=polcoeff(1+16*sum(m=1,n,Pell(m)*m^3*x^m/(1-A002203(m)*(-x)^m+(-1)^m*x^(2*m)+x*O(x^n))),n)} %o A209444 for(n=0,31,print1(a(n),", ")) %Y A209444 Cf. A000143, A205964, A205508, A209443, A204270. %K A209444 nonn %O A209444 0,2 %A A209444 _Paul D. Hanna_, Mar 09 2012