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!)
A355355 G.f. A(x) satisfies: 5*x = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n+1)/2) * A(x)^n. 9
1, 5, 40, 320, 2660, 23455, 216540, 2064055, 20137945, 200134600, 2019406895, 20635313325, 213109960895, 2220820915065, 23323755734820, 246616999661690, 2623193780773530, 28049464032800110, 301340494687086960, 3251017466141039095, 35207152686408604400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) = Sum_{k=0..n} A355350(n,k) * 5^k for n >= 0.
LINKS
FORMULA
G.f. A(x) satisfies:
(1) 5*x = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n+1)/2) * A(x)^n.
(2) 5*x*P(x) = Product_{n>=1} (1 - x^n*A(x)) * (1 - x^(n-1)/A(x)), where P(x) = Product_{n>=1} 1/(1 - x^n) is the partition function (A000041), due to the Jacobi triple product identity.
EXAMPLE
G.f.: A(x) = 1 + 5*x + 40*x^2 + 320*x^3 + 2660*x^4 + 23455*x^5 + 216540*x^6 + 2064055*x^7 + 20137945*x^8 + 200134600*x^9 + 2019406895*x^10 + ...
where
5*x = ... - x^10/A(x)^5 + x^6/A(x)^4 - x^3/A(x)^3 + x/A(x)^2 - 1/A(x) + 1 - x*A(x) + x^3*A(x)^2 - x^6*A(x)^3 + x^10*A(x)^4 -+ ...
also,
5*x*P(x) = (1 - x*A(x))*(1 - 1/A(x)) * (1 - x^2*A(x))*(1 - x/A(x)) * (1 - x^3*A(x))*(1 - x^2/A(x)) * (1 - x^4*A(x))*(1 - x^3/A(x)) * ...
where P(x) is the partition function and begins
P(x) = 1 + x + 2*x^2 + 3*x^3 + 5*x^4 + 7*x^5 + 11*x^6 + 15*x^7 + 22*x^8 + 30*x^9 + 42*x^10 + 56*x^11 + 77*x^12 + ... + A000041(n)*x^n + ...
PROG
(PARI) {a(n) = my(A=[1, 5], t); for(i=1, n, A=concat(A, 0); t = ceil(sqrt(2*(#A)+9));
A[#A] = -polcoeff( sum(m=-t, t, (-1)^m*x^(m*(m+1)/2)*Ser(A)^m ), #A-1)); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A145841 A123943 A067412 * A078846 A027259 A007036
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 29 2022
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 May 16 05:56 EDT 2024. Contains 372549 sequences. (Running on oeis4.)