The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A363114 Expansion of g.f. A(x) satisfying 1 = Sum_{n=-oo..+oo} x^n * (2*A(x) - x^n)^(4*n-1). 3
1, 4, 138, 6571, 353935, 20694945, 1276853497, 81834405039, 5395444806588, 363600236084796, 24933767742193052, 1734273108108910743, 122058422998192278797, 8676376795137864622232, 622018188741046650309066, 44922343315319150402783783, 3265215115112327274815579250 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Generating function A(x) = Sum_{n>=0} a(n)*x^n satisfies the following formulas.
(1) 1 = Sum_{n=-oo..+oo} x^n * (2*A(x) - x^n)^(4*n-1).
(2) -1 = Sum_{n=-oo..+oo} x^(4*n^2) / (1 - 2*A(x)*x^n)^(4*n+1).
EXAMPLE
G.f.: A(x) = 1 + 4*x + 138*x^2 + 6571*x^3 + 353935*x^4 + 20694945*x^5 + 1276853497*x^6 + 81834405039*x^7 + 5395444806588*x^8 + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0);
A[#A] = polcoeff(-1 + sum(m=-#A, #A, x^m * (2*Ser(A) - x^m)^(4*m-1) ), #A-1)/2); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0);
A[#A] = polcoeff(1 - sum(m=-#A, #A, x^(4*m^2)/(1 - 2*Ser(A)*x^m)^(4*m+1) ), #A-1)/2); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Cf. A361774.
Sequence in context: A155207 A201388 A089666 * A029850 A221675 A340838
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 14 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 June 7 08:05 EDT 2024. Contains 373160 sequences. (Running on oeis4.)