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!)
A341375 G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies: [Sum_{n>=0} x^n/(1 - x^(n+1))]^4 = Sum_{n>=0} a(n)*x^n/(1 - x^(n+1))^4. 2
1, 4, 22, 56, 181, 256, 730, 968, 1859, 2368, 4810, 4680, 9674, 9944, 15024, 17580, 29693, 25792, 47226, 42476, 62505, 66388, 104586, 83700, 141472, 132768, 181046, 173964, 273121, 202124, 359578, 307860, 410700, 399924, 551552, 436980, 743931, 629304, 816002 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies:
(1) [ Sum_{n>=0} x^n/(1 - x^(n+1)) ]^4 = Sum_{n>=0} a(n) * x^n / (1 - x^(n+1))^4.
(2) [ Sum_{n>=0} x^n/(1 - x^(n+1)) ]^4 = Sum_{n>=0} (n+1)*(n+2)*(n+3)/6 * x^n * A( x^(n+1) ).
EXAMPLE
A(x) = 1 + 4*x + 22*x^2 + 56*x^3 + 181*x^4 + 256*x^5 + 730*x^6 + 968*x^7 + 1859*x^8 + 2368*x^9 + 4810*x^10 + 4680*x^11 + 9674*x^12 + ...
such that
D(x)^4 = 1/(1-x)^4 + 4*x/(1-x^2)^4 + 22*x^2/(1-x^3)^4 + 56*x^3/(1-x^4)^4 + 181*x^4/(1-x^5)^4 + 256*x^5/(1-x^6)^4 + ... + a(n)*x^n/(1-x^(n+1))^4 + ...
and
D(x)^4 = A(x) + 4*x*A(x^2) + 10*x^2*A(x^3) + 20*x^3*A(x^4) + 35*x^4*A(x^5) + 56*x^5*A(x^6) + 84*x^6*A(x^7) + ... + (n+1)*(n+2)*(n+3)/6*x^n*A(x^(n+1)) + ...
where
D(x)^4 = 1 + 8*x + 32*x^2 + 92*x^3 + 216*x^4 + 440*x^5 + 814*x^6 + 1392*x^7 + 2244*x^8 + 3452*x^9 + 5096*x^10 + 7292*x^11 + 10129*x^12 + ...
D(x) = 1 + 2*x + 2*x^2 + 3*x^3 + 2*x^4 + 4*x^5 + 2*x^6 + 4*x^7 + 3*x^8 + 4*x^9 + 2*x^10 + 6*x^11 + 2*x^12 + ... + A000005(n+1)*x^n + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0);
A[#A] = polcoeff( sum(n=0, #A, x^n/(1 - x^(n+1) +x*O(x^#A)) )^4 - sum(n=0, #A-1, A[n+1]*x^n/(1 - x^(n+1) + x*O(x^#A))^4 ), #A-1) ); A[n+1]}
for(n=0, 100, print1(a(n), ", "))
CROSSREFS
Sequence in context: A022603 A050773 A122241 * A076525 A089761 A098837
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 11 2021
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 7 04:56 EDT 2024. Contains 372300 sequences. (Running on oeis4.)