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!)
A341374 G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies: [Sum_{n>=0} x^n/(1 - x^(n+1))]^3 = Sum_{n>=0} a(n)*x^n/(1 - x^(n+1))^3. 2
1, 3, 12, 22, 63, 57, 181, 174, 318, 302, 714, 444, 1177, 852, 1239, 1349, 2598, 1440, 3586, 2226, 3381, 3282, 6246, 3174, 6980, 5343, 7434, 6031, 12111, 5076, 14638, 9636, 12381, 11513, 16125, 9441, 24115, 15765, 19743, 14982, 32076, 13317, 36726, 21783, 25062 (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)) ]^3 = Sum_{n>=0} a(n) * x^n / (1 - x^(n+1))^3.
(2) [ Sum_{n>=0} x^n/(1 - x^(n+1)) ]^3 = Sum_{n>=0} (n+1)*(n+2)/2 * x^n * A( x^(n+1) ).
EXAMPLE
A(x) = 1 + 3*x + 12*x^2 + 22*x^3 + 63*x^4 + 57*x^5 + 181*x^6 + 174*x^7 + 318*x^8 + 302*x^9 + 714*x^10 + 444*x^11 + 1177*x^12 + ...
such that
D(x)^3 = 1/(1-x)^3 + 3*x/(1-x^2)^3 + 12*x^2/(1-x^3)^3 + 22*x^3/(1-x^4)^3 + 63*x^4/(1-x^5)^3 + 57*x^5/(1-x^6)^3 + ... + a(n)*x^n/(1-x^(n+1))^3 + ...
and
D(x)^3 = A(x) + 3*x*A(x^2) + 6*x^2*A(x^3) + 10*x^3*A(x^4) + 15*x^4*A(x^5) + 21*x^5*A(x^6) + 28*x^6*A(x^7) + ... + (n+1)*(n+2)/2*x^n*A(x^(n+1)) + ...
where
D(x)^3 = 1 + 6*x + 18*x^2 + 41*x^3 + 78*x^4 + 132*x^5 + 209*x^6 + 306*x^7 + 435*x^8 + 591*x^9 + 780*x^10 + 1008*x^11 + ... + A191829(n+1)*x^n + ...
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)) )^3 - sum(n=0, #A-1, A[n+1]*x^n/(1 - x^(n+1) + x*O(x^#A))^3 ), #A-1) ); A[n+1]}
for(n=0, 100, print1(a(n), ", "))
CROSSREFS
Sequence in context: A063598 A063107 A015629 * A154138 A332349 A354529
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 April 16 17:36 EDT 2024. Contains 371749 sequences. (Running on oeis4.)