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-3 of 3 results.

A244754 a(n) = Sum_{k=0..n} C(n,k) * (1 + 2^k)^(n-k).

Original entry on oeis.org

1, 3, 11, 51, 311, 2583, 30011, 495771, 11740271, 399511023, 19531952051, 1369534859091, 137461591250951, 19708614005005383, 4029559971566918891, 1172950335844577723211, 485515762655939377001951, 285459356061242116657495263, 238215406681004045293498284131
Offset: 0

Views

Author

Paul D. Hanna, Jul 05 2014

Keywords

Examples

			E.g.f.: A(x) = 1 + 3*x + 11*x^2/2! + 51*x^3/3! + 311*x^4/4! + 2583*x^5/5! +...
where
A(x) = exp(x)*(1 + 2*x + 6*x^2/2! + 26*x^3/3! + 162*x^4/4! + 1442*x^5/5! +...+ A047863(n)*x^n/n! +...).
ILLUSTRATION OF INITIAL TERMS:
a(1) = (1+2^0)^1 + (1+2^1)^0 = 3;
a(2) = (1+2^0)^2 + 2*(1+2^1)^1 + (1+2^2)^0 = 11;
a(3) = (1+2^0)^3 + 3*(1+2^1)^2 + 3*(1+2^2)^1 + (1+2^3)^0 = 51;
a(4) = (1+2^0)^4 + 4*(1+2^1)^3 + 6*(1+2^2)^2 + 4*(1+2^3)^1 + (1+2^4)^0 = 311; ...
		

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n,k] * (1 + 2^k)^(n-k),{k,0,n}],{n,0,20}] (* Vaclav Kotesovec, Jan 25 2015 *)
  • PARI
    {a(n) = sum(k=0,n,binomial(n,k) * (1 + 2^k)^(n-k) )}
    for(n=0,25,print1(a(n),", "))
    
  • PARI
    /* E.g.f.: Sum_{n>=0} exp((1+2^n)*x)*x^n/n!: */
    {a(n)=n!*polcoeff(sum(k=0, n, exp((1+2^k)*x +x*O(x^n))*x^k/k!), n)}
    for(n=0,25,print1(a(n),", "))
    
  • PARI
    /* O.g.f. Sum_{n>=0} x^n/(1 - (1+2^n)*x)^(n+1): */
    {a(n)=polcoeff(sum(k=0, n, x^k/(1-(1+2^k)*x +x*O(x^n))^(k+1)), n)}
    for(n=0,25,print1(a(n),", "))

Formula

E.g.f.: Sum_{n>=0} exp((1+2^n)*x) * x^n/n!.
O.g.f.: Sum_{n>=0} x^n/(1 - (1+2^n)*x)^(n+1).
a(n) ~ c * 2^(n^2/4 + n + 1/2) / sqrt(Pi*n), where c = JacobiTheta3(0, 1/2) = EllipticTheta[3, 0, 1/2] = 2.1289368272118771586... if n is even, and c = JacobiTheta2(0, 1/2) = EllipticTheta[2, 0, 1/2] = 2.12893125051302755859... if n is odd. - Vaclav Kotesovec, Jan 25 2015

A244756 a(n) = Sum_{k=0..n} C(n,k) * (2 + 3^k)^(n-k).

Original entry on oeis.org

1, 4, 20, 136, 1424, 25504, 831680, 49526656, 5359464704, 1033951896064, 354410768092160, 213011725510260736, 224795751647646224384, 412813583857427719266304, 1323683536183041967893954560, 7361415226356149639592083685376, 71294465534894253722438522191806464
Offset: 0

Views

Author

Paul D. Hanna, Jul 05 2014

Keywords

Examples

			E.g.f.: A(x) = 1 + 4*x + 20*x^2/2! + 136*x^3/3! + 1424*x^4/4! + 25504*x^5/5! +...
ILLUSTRATION OF INITIAL TERMS:
a(1) = (2+3^0)^1 + (2+3^1)^0 = 4;
a(2) = (2+3^0)^2 + 2*(2+3^1)^1 + (2+3^2)^0 = 20;
a(3) = (2+3^0)^3 + 3*(2+3^1)^2 + 3*(2+3^2)^1 + (2+3^3)^0 = 136;
a(4) = (2+3^0)^4 + 4*(2+3^1)^3 + 6*(2+3^2)^2 + 4*(2+3^3)^1 + (2+3^4)^0 = 1424; ...
		

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n,k] * (2 + 3^k)^(n-k),{k,0,n}],{n,0,20}] (* Vaclav Kotesovec, Jan 25 2015 *)
  • PARI
    {a(n) = sum(k=0,n,binomial(n,k) * (2 + 3^k)^(n-k) )}
    for(n=0,25,print1(a(n),", "))
    
  • PARI
    /* E.g.f. Sum_{n>=0} exp((2+3^n)*x)*x^n/n!" */
    {a(n)=n!*polcoeff(sum(k=0, n, exp((2+3^k)*x +x*O(x^n))*x^k/k!), n)}
    for(n=0,25,print1(a(n),", "))
    
  • PARI
    /* O.g.f. Sum_{n>=0} x^n/(1 - (2+3^n)*x)^(n+1): */
    {a(n)=polcoeff(sum(k=0, n, x^k/(1-(2+3^k)*x +x*O(x^n))^(k+1)), n)}
    for(n=0,25,print1(a(n),", "))

Formula

E.g.f.: Sum_{n>=0} exp((2+3^n)*x) * x^n/n!.
O.g.f.: Sum_{n>=0} x^n/(1 - (2+3^n)*x)^(n+1).
a(n) ~ c * 3^(n^2/4) * 2^(n+1/2) / sqrt(Pi*n), where c = JacobiTheta3(0,1/3) = EllipticTheta[3, 0, 1/3] = 1.69145968168171534134842... if n is even, and c = JacobiTheta2(0,1/3) = EllipticTheta[2, 0, 1/3] = 1.69061120307521423305296... if n is odd. - Vaclav Kotesovec, Jan 25 2015

A244760 a(n) = Sum_{k=0..n} C(n,k) * (1 + 3^k)^(n-k) * 2^k.

Original entry on oeis.org

1, 4, 24, 232, 3840, 111904, 5785344, 529662592, 85449338880, 24204383609344, 11986829259362304, 10361640102119729152, 15589910824599107174400, 40815393380277274447519744, 185575767151388880816233447424, 1465910356757779350231777997914112
Offset: 0

Views

Author

Paul D. Hanna, Jul 05 2014

Keywords

Examples

			E.g.f.: A(x) = 1 + 4*x + 24*x^2/2! + 232*x^3/3! + 3840*x^4/4! + 111904*x^5/5! +...
ILLUSTRATION OF INITIAL TERMS:
a(1) = (1+3^0)^1 + (1+3^1)^0*2 = 4;
a(2) = (1+3^0)^2 + 2*(1+3^1)^1*2 + (1+3^2)^0*2^2 = 24;
a(3) = (1+3^0)^3 + 3*(1+3^1)^2*2 + 3*(1+3^2)^1*2^2 + (1+3^3)^0*2^3 = 232;
a(4) = (1+3^0)^4 + 4*(1+3^1)^3*2 + 6*(1+3^2)^2*2^2 + 4*(1+3^3)^1*2^3 + (1+3^4)^0*2^4 = 3480; ...
		

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n,k] * (1 + 3^k)^(n-k) * 2^k,{k,0,n}],{n,0,20}] (* Vaclav Kotesovec, Jan 25 2015 *)
  • PARI
    {a(n) = sum(k=0,n,binomial(n,k) * (1 + 3^k)^(n-k)*2^k )}
    for(n=0,25,print1(a(n),", "))
    
  • PARI
    /* E.g.f. Sum_{n>=0} exp((1+3^n)*x)*(2*x)^n/n! */
    {a(n)=n!*polcoeff(sum(k=0, n, exp((1+3^k)*x +x*O(x^n))*(2*x)^k/k!), n)}
    for(n=0,25,print1(a(n),", "))
    
  • PARI
    /* O.g.f. Sum_{n>=0} (2*x)^n/(1 - (1+3^n)*x)^(n+1): */
    {a(n)=polcoeff(sum(k=0, n, (2*x)^k/(1-(1+3^k)*x +x*O(x^n))^(k+1)), n)}
    for(n=0,25,print1(a(n),", "))

Formula

E.g.f.: Sum_{n>=0} exp((1+3^n)*x) * (2*x)^n/n!.
O.g.f.: Sum_{n>=0} (2*x)^n/(1 - (1+3^n)*x)^(n+1).
a(n) ~ c * 3^(n^2/4) * 2^((3*n+1)/2) / sqrt(Pi*n), where c = sum_{k=-inf..+inf} 1/(3^(k^2) * 2^k) = 1.88621563508001862566062... if n is even, and c = sum_{k=-inf..+inf} 1/(3^((k+1/2)^2) * 2^(k+1/2)) = 1.88659407336643412717014... if n is odd. - Vaclav Kotesovec, Jan 25 2015
Showing 1-3 of 3 results.