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!)
A358961 a(n) = coefficient of x^n in A(x) such that: 1 = Sum_{n=-oo..+oo} x^n * (A(x) - x^(2*n+1))^(n-1). 6
1, 3, 7, 33, 163, 858, 4708, 26662, 154699, 914885, 5494719, 33423598, 205493244, 1274928510, 7972042450, 50188844583, 317861388939, 2023777490895, 12945901676736, 83163975425669, 536279878717858, 3470134399230086, 22525040920670333, 146633283078321531 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Related identity: 0 = Sum_{n=-oo..+oo} x^n * (y - x^(2*n+1))^n, which holds formally for all y.
LINKS
FORMULA
G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies:
(1) 1 = Sum_{n=-oo..+oo} x^n * (A(x) - x^(2*n+1))^(n-1).
(2) x = Sum_{n=-oo..+oo} (-1)^(n+1) * x^(2*n^2) / (1 - x^(2*n-1)*A(x))^(n+1).
(3) A(x) = Sum_{n=-oo..+oo} x^(3*n+1)* (A(x) - x^(2*n+1))^(n-1).
(4) A(x) = Sum_{n=-oo..+oo} (-1)^(n+1) * x^(2*n*(n-1)) / (1 - x^(2*n-1)*A(x))^(n+1).
(5) 0 = Sum_{n=-oo..+oo} (-1)^(n+1) * x^(2*n*(n-1)) / (1 - x^(2*n-1)*A(x))^n.
EXAMPLE
G.f.: A(x) = 1 + 3*x + 7*x^2 + 33*x^3 + 163*x^4 + 858*x^5 + 4708*x^6 + 26662*x^7 + 154699*x^8 + 914885*x^9 + 5494719*x^10 + ...
where A = A(x) satisfies the doubly infinite sum
1 = ... + x^(-2)*(A - x^(-3))^(-3) + x^(-1)*(A - x^(-1))^(-2) + (A - x)^(-1) + x*(A - x^3)^0 + x^2*(A - x^5) + x^3*(A - x^7)^2 + x^4*(A - x^9)^3 + ... + x^n * (A - x^(2*n+1))^(n-1) + ...
also,
A(x) = ... + x^24/(1 - x^(-7)*A)^(-2) - x^12/(1 - x^(-5)*A)^(-1) + x^4 - 1/(1 - x^(-1)*A) + 1/(1 - x*A)^2 - x^4/(1 - x^3*A)^3 + x^12/(1 - x^5*A)^4 - x^24/(1 - x^7*A)^5 + ... + (-1)^(n+1)*x^(2*n*(n-1))/(1 - x^(2*n-1)*A(x))^(n+1) + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0);
A[#A] = polcoeff( sum(n=-#A, #A, x^n * (Ser(A) - x^(2*n+1))^(n-1) ), #A-1) ); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A057795 A054935 A208989 * A024496 A081890 A192880
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 07 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 July 21 20:15 EDT 2024. Contains 374475 sequences. (Running on oeis4.)