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!)
A322619 G.f.: Sum_{n>=0} x^n * (1 + x^n)^n / (1 - x + x^(n+1))^(n+1). 2
1, 1, 4, 7, 12, 23, 55, 116, 228, 443, 885, 1812, 3743, 7635, 15391, 30890, 62033, 124795, 251329, 506102, 1018194, 2045892, 4106530, 8236843, 16514499, 33102119, 66336493, 132908840, 266228896, 533159832, 1067501475, 2136981261, 4277279486, 8560149475, 17129767749, 34275609936, 68578490158, 137203118904, 274484024181, 549098750459, 1098416535730, 2197199475635, 4395011194670 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Sum_{n>=0} x^n * (1 + x^n)^n / (1 - x + x^(n+1))^(n+1).
G.f.: Sum_{n>=0} (-x)^n * (1 - x^n)^n / (1 - x - x^(n+1))^(n+1).
EXAMPLE
G.f.: A(x) = 1 + x + 4*x^2 + 7*x^3 + 12*x^4 + 23*x^5 + 55*x^6 + 116*x^7 + 228*x^8 + 443*x^9 + 885*x^10 + 1812*x^11 + 3743*x^12 + 7635*x^13 + 15391*x^14 + ...
such that
A(x) = 1 + x*(1+x)/(1-x + x^2)^2 + x^2*(1+x^2)^2/(1-x + x^3)^3 + x^3*(1+x^3)^3/(1-x + x^4)^4 + x^4*(1+x^4)^4/(1-x + x^5)^5 + x^5*(1+x^5)^5/(1-x + x^6)^6 + x^6*(1+x^6)^6/(1-x + x^7)^7 + ...
also,
A(x) = 1/(1 - 2*x) - x*(1-x)/(1-x - x^2)^2 + x^2*(1-x^2)^2/(1-x - x^3)^3 - x^3*(1-x^3)^3/(1-x - x^4)^4 + x^4*(1-x^4)^4/(1-x - x^5)^5 - x^5*(1-x^5)^5/(1-x - x^6)^6 + x^6*(1-x^6)^6/(1-x - x^7)^7 + ...
PROG
(PARI) {a(n) = my(A = sum(m=0, n, x^m*(1 + x^m)^m/(1 - x + x^(m+1) +x*O(x^n) )^(m+1) ) ); polcoeff(A, n)}
for(n=0, 50, print1(a(n), ", "))
(PARI) {a(n) = my(A = sum(m=0, n, (-x)^m*(1 - x^m)^m/(1 - x - x^(m+1) +x*O(x^n) )^(m+1) ) ); polcoeff(A, n)}
for(n=0, 50, print1(a(n), ", "))
CROSSREFS
Cf. A322618.
Sequence in context: A123194 A208668 A243860 * A299900 A215329 A208724
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 26 2019
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 25 21:09 EDT 2024. Contains 371989 sequences. (Running on oeis4.)