cp's OEIS Frontend

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.

A370032 Expansion of g.f. A(x) satisfying Sum_{n=-oo..+oo} (x^n + A(x))^n = 1 + 3*Sum_{n>=1} x^(n^2).

This page as a plain text file.
%I A370032 #10 Feb 12 2024 02:26:54
%S A370032 1,-1,0,3,-10,21,-25,-23,228,-737,1479,-1245,-4352,25206,-72761,
%T A370032 128245,-38615,-697798,3109043,-8016819,11763729,6510069,-108216128,
%U A370032 403917707,-925174519,1025709534,2228869018,-16585014721,53758505915,-107811969706,69758146717,478423936550,-2520835801152,7208714823250
%N A370032 Expansion of g.f. A(x) satisfying Sum_{n=-oo..+oo} (x^n + A(x))^n = 1 + 3*Sum_{n>=1} x^(n^2).
%H A370032 Paul D. Hanna, <a href="/A370032/b370032.txt">Table of n, a(n) for n = 1..401</a>
%F A370032 G.f. A(x) = Sum_{n>=1} a(n)*x^n satisfies the following formulas.
%F A370032 (1) Sum_{n=-oo..+oo} (x^n + A(x))^n = 1 + 3*Sum_{n>=1} x^(n^2).
%F A370032 (2) Sum_{n=-oo..+oo} x^n * (x^n - A(x))^(n-1) = 1 + 3*Sum_{n>=1} x^(n^2).
%F A370032 (3) Sum_{n=-oo..+oo} (-1)^n * x^n * (x^n + A(x))^n = 0.
%F A370032 (4) Sum_{n=-oo..+oo} x^(n^2) / (1 + x^n*A(x))^n = 1 + 3*Sum_{n>=1} x^(n^2).
%F A370032 (5) Sum_{n=-oo..+oo} x^(n^2) / (1 - x^n*A(x))^(n+1) = 1 + 3*Sum_{n>=1} x^(n^2).
%F A370032 (6) Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) / (1 + x^n*A(x))^n = 0.
%e A370032 G.f.: A(x) = x - x^2 + 3*x^4 - 10*x^5 + 21*x^6 - 25*x^7 - 23*x^8 + 228*x^9 - 737*x^10 + 1479*x^11 - 1245*x^12 - 4352*x^13 + 25206*x^14 - 72761*x^15 + 128245*x^16 + ...
%e A370032 where
%e A370032 Sum_{n=-oo..+oo} (x^n + A(x))^n = 1 + 3*x + 3*x^4 + 3*x^9 + 3*x^16 + 3*x^25 + 3*x^36 + 3*x^49 + 3*x^64 + ...
%o A370032 (PARI) {a(n) = my(A=[0, 1]); for(i=1, n, A = concat(A, 0);A[#A] = -polcoeff( sum(m=-#A, #A, (x^m + Ser(A))^m ) - 1 - 3*sum(m=1, #A, x^(m^2) ), #A-1) ); A[n+1]}
%o A370032 for(n=1, 30, print1(a(n), ", "))
%Y A370032 Cf. A370041, A370030, A370031, A355868, A370033, A370034, A370035, A370036, A370037, A370038, A370039, A370043.
%K A370032 sign
%O A370032 1,4
%A A370032 _Paul D. Hanna_, Feb 11 2024