cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A326092 E.g.f.: Sum_{n>=0} ((1+x)^n + 2)^n * x^n/n!.

Original entry on oeis.org

1, 3, 11, 63, 525, 5883, 84519, 1494783, 31854489, 800205075, 23315862339, 777867156927, 29384670476709, 1245177345486987, 58718905551858015, 3060140159517853887, 175176443950054714161, 10955959246057628397987, 745058168844977314910331, 54857350105041217492956735, 4356213264604432880789346621
Offset: 0

Views

Author

Paul D. Hanna, Jun 21 2019

Keywords

Comments

More generally, the following sums are equal:
(1) Sum_{n>=0} (q^n + p)^n * r^n/n!,
(2) Sum_{n>=0} q^(n^2) * exp(p*q^n*r) * r^n/n!;
here, q = (1+x) and p = 2, r = x.
In general, let F(x) be a formal power series in x such that F(0)=1, then
Sum_{n>=0} m^n * F(q^n*r)^p * log( F(q^n*r) )^n / n! =
Sum_{n>=0} r^n * [y^n] F(y)^(m*q^n + p);
here, F(x) = exp(x), q = 1+x, p = 2, r = x, m = 1.

Examples

			E.g.f.: A(x) = 1 + 3*x + 11*x^2/2! + 63*x^3/3! + 525*x^4/4! + 5883*x^5/5! + 84519*x^6/6! + 1494783*x^7/7! + 31854489*x^8/8! + 800205075*x^9/9! + 23315862339*x^10/10! + ...
such that
A(x) = 1 + ((1+x) + 2)*x + ((1+x)^2 + 2)^2*x^2/2! + ((1+x)^3 + 2)^3*x^3/3! + ((1+x)^4 + 2)^4*x^4/4! + ((1+x)^5 + 2)^5*x^5/5! + ((1+x)^6 + 2)^6*x^6/6! + ((1+x)^7 + 2)^7*x^7/7! + ...
also
A(x) = 1 + (1+x)*exp(2*x*(1+x))*x + (1+x)^4*exp(2*x*(1+x)^2)*x^2/2! + (1+x)^9*exp(2*x*(1+x)^3)*x^3/3! + (1+x)^16*exp(2*x*(1+x)^4)*x^4/4! + (1+x)^25*exp(2*x*(1+x)^5)*x^5/5! + (1+x)^36*exp(2*x*(1+x)^6)*x^6/6! + ...
		

Crossrefs

Programs

  • PARI
    /* E.g.f.: Sum_{n>=0} ((1+x)^n + 2)^n * x^n/n! */
    {a(n) = my(A = sum(m=0,n, ((1+x)^m + 2 +x*O(x^n))^m * x^m/m! )); n!*polcoeff(A,n)}
    for(n=0,25, print1(a(n),", "))
    
  • PARI
    /* E.g.f.: Sum_{n>=0} (1+x)^(n^2) * exp(2*x*(1+x)^n) * x^n/n! */
    {a(n) = my(A = sum(m=0,n, (1+x +x*O(x^n))^(m^2) * exp(2*x*(1+x)^m +x*O(x^n)) * x^m/m! )); n!*polcoeff(A,n)}
    for(n=0,25, print1(a(n),", "))

Formula

E.g.f.: Sum_{n>=0} ((1+x)^n + 2)^n * x^n/n!,
E.g.f.: Sum_{n>=0} (1+x)^(n^2) * exp(2*x*(1+x)^n) * x^n/n!.
a(n) = 0 (mod 3) for n > 2.

A326093 E.g.f.: Sum_{n>=0} ((1+x)^n + 3)^n * x^n/n!.

Original entry on oeis.org

1, 4, 18, 112, 976, 11424, 169936, 3101032, 67876608, 1746757504, 52034505376, 1771434644544, 68180144988928, 2939951026982272, 140920461751138176, 7457658363325181824, 433145750643704774656, 27464893679743640343552, 1892311278990953945563648, 141074242336048184406390784, 11336870115013701213795557376
Offset: 0

Views

Author

Paul D. Hanna, Jun 21 2019

Keywords

Comments

More generally, the following sums are equal:
(1) Sum_{n>=0} (q^n + p)^n * x^n/n!,
(2) Sum_{n>=0} q^(n^2) * exp(p*q^n*x) * x^n/n!;
here, q = (1+x) and p = 3.
In general, let F(x) be a formal power series in x such that F(0)=1, then
Sum_{n>=0} m^n * F(q^n*r)^p * log( F(q^n*r) )^n / n! =
Sum_{n>=0} r^n * [y^n] F(y)^(m*q^n + p);
here, F(x) = exp(x), q = 1+x, p = 3, r = x, m = 1.

Examples

			E.g.f.: A(x) = 1 + 4*x + 18*x^2/2! + 112*x^3/3! + 976*x^4/4! + 11424*x^5/5! + 169936*x^6/6! + 3101032*x^7/7! + 67876608*x^8/8! + 1746757504*x^9/9! + 52034505376*x^10/10! + ...
such that
A(x) = 1 + ((1+x) + 3)*x + ((1+x)^2 + 3)^2*x^2/2! + ((1+x)^3 + 3)^3*x^3/3! + ((1+x)^4 + 3)^4*x^4/4! + ((1+x)^5 + 3)^5*x^5/5! + ((1+x)^6 + 3)^6*x^6/6! + ((1+x)^7 + 3)^7*x^7/7! + ...
also
A(x) = 1 + (1+x)*exp(3*x*(1+x))*x + (1+x)^4*exp(3*x*(1+x)^2)*x^2/2! + (1+x)^9*exp(3*x*(1+x)^3)*x^3/3! + (1+x)^16*exp(3*x*(1+x)^4)*x^4/4! + (1+x)^25*exp(3*x*(1+x)^5)*x^5/5! + (1+x)^36*exp(3*x*(1+x)^6)*x^6/6! + ...
		

Crossrefs

Programs

  • PARI
    /* E.g.f.: Sum_{n>=0} ((1+x)^n + 3)^n * x^n/n! */
    {a(n) = my(A = sum(m=0,n, ((1+x)^m + 3 +x*O(x^n))^m * x^m/m! )); n!*polcoeff(A,n)}
    for(n=0,25, print1(a(n),", "))
    
  • PARI
    /* E.g.f.: Sum_{n>=0} (1+x)^(n^2) * exp(3*x*(1+x)^n) * x^n/n! */
    {a(n) = my(A = sum(m=0,n, (1+x +x*O(x^n))^(m^2) * exp(3*x*(1+x)^m +x*O(x^n)) * x^m/m! )); n!*polcoeff(A,n)}
    for(n=0,25, print1(a(n),", "))

Formula

E.g.f.: Sum_{n>=0} ((1+x)^n + 3)^n * x^n/n!,
E.g.f.: Sum_{n>=0} (1+x)^(n^2) * exp(3*x*(1+x)^n) * x^n/n!.
a(n) = 0 (mod 4) for n > 2.

A326096 E.g.f.: Sum_{n>=0} ((1+x)^n + 1)^n * x^n/n!.

Original entry on oeis.org

1, 2, 6, 32, 256, 2712, 37744, 645752, 13371264, 327748832, 9332342944, 304875611328, 11298403070464, 470279355784448, 21809054992366464, 1118931830122060928, 63115145120561606656, 3892675200470654980608, 261242029823318546162176, 18994387868664467440590848, 1490356266852194536099393536, 125747158151444491631754033152
Offset: 0

Views

Author

Paul D. Hanna, Jun 05 2019

Keywords

Comments

More generally, the following sums are equal:
(1) Sum_{n>=0} (q^n + p)^n * x^n/n!,
(2) Sum_{n>=0} q^(n^2) * exp(p*q^n*x) * x^n/n!;
here, q = (1+x) and p = 1.
In general, let F(x) be a formal power series in x such that F(0)=1, then
Sum_{n>=0} m^n * F(q^n*r)^p * log( F(q^n*r) )^n / n! =
Sum_{n>=0} r^n * [y^n] F(y)^(m*q^n + p);
here, F(x) = exp(x), q = 1+x, p = 1, r = x, m = 1.

Examples

			E.g.f.: A(x) = 1 + 2*x + 6*x^2/2! + 32*x^3/3! + 256*x^4/4! + 2712*x^5/5! + 37744*x^6/6! + 645752*x^7/7! + 13371264*x^8/8! + 327748832*x^9/9! + 9332342944*x^10/10! + 304875611328*x^11/11! + 11298403070464*x^12/12! + ...
such that
A(x) = 1 + ((1+x) + 1)*x + ((1+x)^2 + 1)^2*x^2/2! + ((1+x)^3 + 1)^3*x^3/3! + ((1+x)^4 + 1)^4*x^4/4! + ((1+x)^5 + 1)^5*x^5/5! + ((1+x)^6 + 1)^6*x^6/6! + ((1+x)^7 + 1)^7*x^7/7! + ...
also
A(x) = 1 + (1+x)*exp(x*(1+x))*x + (1+x)^4*exp(x*(1+x)^2)*x^2/2! + (1+x)^9*exp(x*(1+x)^3)*x^3/3! + (1+x)^16*exp(x*(1+x)^4)*x^4/4! + (1+x)^25*exp(x*(1+x)^5)*x^5/5! + (1+x)^36*exp(x*(1+x)^6)*x^6/6! + ...
RELATED SERIES.
Below we illustrate the following identity at specific values of x:
Sum_{n>=0} ((1+x)^n + 1)^n * x^n/n!  =  Sum_{n>=0} (1+x)^(n^2) * exp(x*(1+x)^n) * x^n/n!.
(1) At x = -1/2, the following sums are equal
S1 = Sum_{n>=0} (-1)^n * 2^(-n*(n+1)) * (2^n + 1)^n / n!,
S1 = Sum_{n>=0} (-1)^n * 2^(-n*(n+1)) * exp( -1/2^(n+1) ) / n!,
where S1 = 0.41868678468707099609788224908427981408329845879700862624389...
(2) At x = -2/3, the following sums are equal
S2 = Sum_{n>=0} (-1)^n * 2^n * 3^(-n*(n+1)) * (3^n + 1)^n / n!,
S2 = Sum_{n>=0} (-1)^n * 2^n * 3^(-n*(n+1)) * exp( -2/3^(n+1) ) / n!,
where S2 = 0.33802063384093377391547056494398131361711992142768124149541...
		

Crossrefs

Programs

  • PARI
    /* E.g.f.: Sum_{n>=0} ((1+x)^n + 1)^n * x^n/n! */
    {a(n) = my(A = sum(m=0,n, ((1+x)^m + 1 +x*O(x^n))^m * x^m/m! )); n!*polcoeff(A,n)}
    for(n=0,25, print1(a(n),", "))
    
  • PARI
    /* E.g.f.: Sum_{n>=0} (1+x)^(n^2) * exp(x*(1+x)^n) * x^n/n! */
    {a(n) = my(A = sum(m=0,n, (1+x +x*O(x^n))^(m^2) * exp(x*(1+x)^m +x*O(x^n)) * x^m/m! )); n!*polcoeff(A,n)}
    for(n=0,25, print1(a(n),", "))

Formula

E.g.f.: Sum_{n>=0} ((1+x)^n + 1)^n * x^n/n!,
E.g.f.: Sum_{n>=0} (1+x)^(n^2) * exp(x*(1+x)^n) * x^n/n!.

A326274 E.g.f.: Sum_{n>=0} ((1+x)^n - 1)^n * 4^n / n!.

Original entry on oeis.org

1, 4, 64, 1920, 86464, 5304320, 418131456, 40727959552, 4765747597312, 655794545577984, 104360850604687360, 18948720298674028544, 3882059495694122090496, 889053986706845142876160, 225799026538694916941283328, 63163063632830911303738982400, 19344290761718462120859544846336, 6452149866509553556278434299117568, 2332867461867950308492384248149311488, 910538103145382496893587688740637114368, 382208425560563535419125500691963382333440
Offset: 0

Views

Author

Paul D. Hanna, Jun 22 2019

Keywords

Comments

More generally, the following sums are equal:
(1) Sum_{n>=0} (q^n + p)^n * r^n/n!,
(2) Sum_{n>=0} q^(n^2) * exp(p*q^n*r) * r^n/n!;
here, q = (1+x) and p = -1, r = 4.
In general, let F(x) be a formal power series in x such that F(0)=1, then
Sum_{n>=0} m^n * F(q^n*r)^p * log( F(q^n*r) )^n / n! =
Sum_{n>=0} r^n * [y^n] F(y)^(m*q^n + p);
here, F(x) = exp(x), q = 1+x, p = -1, r = 4, m = 1.

Examples

			E.g.f: A(x) = 1 + 4*x + 64*x^2/2! + 1920*x^3/3! + 86464*x^4/4! + 5304320*x^5/5! + 418131456*x^6/6! + 40727959552*x^7/7! + 4765747597312*x^8/8! + 655794545577984*x^9/9! + 104360850604687360*x^10/10! +...
such that
A(x) = 1 + 4*((1+x) - 1) + 4^2*((1+x)^2 - 1)^2/2! + 4^3*((1+x)^3 - 1)^3/3! + 4^4*((1+x)^4 - 1)^4/4! + 4^5*((1+x)^5 - 1)^5/5! + 4^6*((1+x)^6 - 1)^6/6! + 4^7*((1+x)^7 - 1)^7/7! + ...
also
A(x) = 1 + 4*(1+x)*exp(-4*(1+x)) + 4^2*(1+x)^4*exp(-4*(1+x)^2)/2! + 4^3*(1+x)^9*exp(-4*(1+x)^3)/3! + 4^4*(1+x)^16*exp(-4*(1+x)^4)/4! + 4^5*(1+x)^25*exp(-4*(1+x)^5)/5! + 4^6*(1+x)^36*exp(-4*(1+x)^6)/6! + 4^7*(1+x)^49*exp(-4*(1+x)^7)/7! + ...
		

Crossrefs

Programs

  • PARI
    {a(n)=n!*polcoeff(sum(m=0, n, 4^m*((1+x+x*O(x^n))^m-1)^m/m!), n)}
    for(n=0, 30, print1(a(n), ", "))

Formula

E.g.f. may be expressed by the following sums.
(1) Sum_{n>=0} ((1+x)^n - 1)^n * 4^n / n!.
(2) Sum_{n>=0} (1+x)^(n^2) * exp(-4*(1+x)^n) * 4^n / n!.
Showing 1-4 of 4 results.