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

A000023 Expansion of e.g.f. exp(-2*x)/(1-x).

Original entry on oeis.org

1, -1, 2, -2, 8, 8, 112, 656, 5504, 49024, 491264, 5401856, 64826368, 842734592, 11798300672, 176974477312, 2831591702528, 48137058811904, 866467058876416, 16462874118127616, 329257482363600896, 6914407129633521664, 152116956851941670912
Offset: 0

Views

Author

Keywords

Comments

A010843, A000023, A000166, A000142, A000522, A010842, A053486, A053487 are successive binomial transforms with the e.g.f. exp(k*x)/(1-x) and recurrence b(n) = n*b(n-1)+k^n and are related to incomplete gamma functions at k. In this case k=-2, a(n) = n*a(n-1)+(-2)^n = Gamma(n+1,k)*exp(k) = Sum_{i=0..n} (-1)^(n-i)*binomial(n,i)*i^(n-i)*(i+k)^i. - Vladeta Jovovic, Aug 19 2002
a(n) is the permanent of the n X n matrix with -1's on the diagonal and 1's elsewhere. - Philippe Deléham, Dec 15 2003

Examples

			G.f. = 1 - x + 2*x^2 - 2*x^3 + 8*x^4 + 8*x^5 + 112*x^6 + 656*x^7 + ... - _Michael Somos_, Nov 20 2018
		

References

  • J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, p. 210.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Haskell
    a000023 n = foldl g 1 [1..n]
      where g n m = n*m + (-2)^m
    -- James Spahlinger, Oct 08 2012
    
  • Maple
    a := n -> n!*add(((-2)^k/k!), k=0..n): seq(a(n), n=0..27); # Zerinvary Lajos, Jun 22 2007
    seq(simplify(KummerU(-n, -n, -2)), n = 0..22); # Peter Luschny, May 10 2022
  • Mathematica
    FoldList[#1*#2 + (-2)^#2 &, 1, Range[22]] (* Robert G. Wilson v, Jul 07 2012 *)
    With[{r = Round[n!/E^2 - (-2)^(n + 1)/(n + 1)]}, r - (-1)^n Mod[(-1)^n r, 2^(n + Ceiling[-(2/n) - Log[2, n]])]] (* Stan Wagon May 02 2016 *)
    a[n_] := (-1)^n x D[1/x Exp[x], {x, n}] x^n Exp[-x]
    Table[a[n] /. x -> 2, {n, 0, 22}](* Gerry Martens , May 05 2016 *)
  • PARI
    a(n)=if(n<0,0,n!*polcoeff(exp(-2*x+x*O(x^n))/(1-x),n))
    
  • PARI
    my(x='x+O('x^66)); Vec( serlaplace( exp(-2*x)/(1-x)) ) \\ Joerg Arndt, Oct 06 2013
    
  • Python
    from sympy import exp, uppergamma
    def A000023(n):
        return exp(-2) * uppergamma(n + 1, -2)  # David Radcliffe, Aug 20 2025
  • Sage
    @CachedFunction
    def A000023(n):
        if n == 0: return 1
        return n * A000023(n-1) + (-2)**n
    [A000023(i) for i in range(23)]   # Peter Luschny, Oct 17 2012
    

Formula

a(n) = Sum_{k=0..n} A008290(n,k)*(-1)^k. - Philippe Deléham, Dec 15 2003
a(n) = Sum_{k=0..n} (-2)^(n-k)*n!/(n-k)! = Sum_{k=0..n} binomial(n, k)*k!*(-2)^(n-k). - Paul Barry, Aug 26 2004
a(n) = exp(-2)*Gamma(n+1,-2) (incomplete Gamma function). - Mark van Hoeij, Nov 11 2009
a(n) = b such that (-1)^n*Integral_{x=0..2} x^n*exp(x) dx = c + b*exp(2). - Francesco Daddi, Aug 01 2011
G.f.: hypergeom([1,k],[],x/(1+2*x))/(1+2*x) with k=1,2,3 is the generating function for A000023, A087981, and A052124. - Mark van Hoeij, Nov 08 2011
D-finite with recurrence: - a(n) + (n-2)*a(n-1) + 2*(n-1)*a(n-2) = 0. - R. J. Mathar, Nov 14 2011
E.g.f.: 1/E(0) where E(k) = 1 - x/(1-2/(2-(k+1)/E(k+1))); (continued fraction). - Sergei N. Gladkovskii, Nov 21 2011
G.f.: 1/Q(0), where Q(k) = 1 + 2*x - x*(k+1)/(1 - x*(k+1)/Q(k+1)); (continued fraction). - Sergei N. Gladkovskii, Apr 19 2013
G.f.: 1/Q(0), where Q(k) = 1 - x*(2*k-1) - x^2*(k+1)^2/Q(k+1); (continued fraction). - Sergei N. Gladkovskii, Sep 30 2013
a(n) = Sum_{k=0..n} (-1)^(n+k)*binomial(n, k)*!k, where !k is the subfactorial A000166. a(n) = (-2)^n*hypergeom([1, -n], [], 1/2). - Vladimir Reshetnikov, Oct 18 2015
For n >= 3, a(n) = r - (-1)^n mod((-1)^n r, 2^(n - floor((2/n) + log_2(n)))) where r = {n! * e^(-2) - (-2)^(n+1)/(n+1)}. - Stan Wagon, May 02 2016
0 = +a(n)*(+4*a(n+1) -2*a(n+3)) + a(n+1)*(+4*a(n+1) +3*a(n+2) -a(n+3)) +a(n+2)*(+a(n+2)) if n>=0. - Michael Somos, Nov 20 2018
a(n) = KummerU(-n, -n, -2). - Peter Luschny, May 10 2022

A010842 Expansion of e.g.f.: exp(2*x)/(1-x).

Original entry on oeis.org

1, 3, 10, 38, 168, 872, 5296, 37200, 297856, 2681216, 26813184, 294947072, 3539368960, 46011804672, 644165281792, 9662479259648, 154599668219904, 2628194359869440, 47307498477912064, 898842471080853504, 17976849421618118656, 377513837853982588928
Offset: 0

Views

Author

Keywords

Comments

Incomplete Gamma Function at 2, more precisely: a(n) = exp(2)*Gamma(1+n,2).
Let P(A) be the power set of an n-element set A. Then a(n) = the total number of ways to add 0 or more elements of A to each element x of P(A) where the elements to add are not elements of x and order of addition is important. - Ross La Haye, Nov 19 2007
a(n) is the number of ways to split the set {1,2,...,n} into two disjoint subsets S,T with S union T = {1,2,...,n} and linearly order S and then choose a subset of T. - Geoffrey Critzer, Mar 10 2009

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 262.
  • R. P. Stanley, Enumerative Combinatorics, Cambridge, Vol. 2, 1999; see Example 5.1.2.

Crossrefs

Programs

  • Magma
    m:=45; R:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Exp(2*x)/(1-x))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Oct 16 2018
  • Maple
    G(x):=exp(2*x)/(1-x): f[0]:=G(x): for n from 1 to 19 do f[n]:=diff(f[n-1],x) od: x:=0: seq(f[n],n=0..19); # Zerinvary Lajos, Apr 03 2009
    seq(simplify(exp(1)^2*GAMMA(n+1, 2)), n=0..19); # Peter Luschny, Apr 28 2016
    seq(simplify(KummerU(-n, -n, 2)), n=0..21); # Peter Luschny, May 10 2022
  • Mathematica
    With[{r = Round[n! E^2 - 2^(n + 1)/(n + 1)]}, r - Mod[r, 2^(n - Floor[2/n + Log2[n]])]] (* for n>=4; Stan Wagon, Apr 28 2016 *)
    a[n_] := n! Sum[2^i/i!, {i, 0, n}]
    Table[a[n], {n, 0, 21}] (* Gerry Martens , May 06 2016 *)
    With[{nn=30},CoefficientList[Series[Exp[2x]/(1-x),{x,0,nn}],x] Range[ 0,nn]!] (* Harvey P. Dale, May 27 2019 *)
  • PARI
    x='x+O('x^44); Vec(serlaplace(exp(2*x)/(1-x))) \\ Joerg Arndt, Apr 29 2016
    

Formula

a(n) = row sums of A090802. - Ross La Haye, Aug 18 2006
a(n) = n*a(n-1) + 2^n = (n+2)*a(n-1) - (2*n-2)*a(n-2) = n!*Sum_{j=0..n} floor(2^j/j!). - Henry Bottomley, Jul 12 2001
a(n) is the permanent of the n X n matrix with 3's on the diagonal and 1's elsewhere. a(n) = Sum_{k=0..n} A008290(n, k)*3^k. - Philippe Deléham, Dec 12 2003
Binomial transform of A000522. - Ross La Haye, Sep 15 2004
a(n) = Sum_{k=0..n} k!*binomial(n, k)*2^(n-k). - Paul Barry, Apr 22 2005
a(n) = A066534(n) + 2^n. - Ross La Haye, Nov 16 2005
G.f.: hypergeom([1,k],[],x/(1-2*x))/(1-2*x) with k=1,2,3 is the generating function for A010842, A081923, and A082031. - Mark van Hoeij, Nov 08 2011
E.g.f.: 1/E(0), where E(k) = 1 - x/(1-2/(2+(k+1)/E(k+1))); (continued fraction). - Sergei N. Gladkovskii, Nov 21 2011
G.f.: 1/Q(0), where Q(k)= 1 - 2*x - x*(k+1)/(1-x*(k+1)/Q(k+1)); (continued fraction). - Sergei N. Gladkovskii, Apr 18 2013
a(n) ~ n! * exp(2). - Vaclav Kotesovec, Jun 01 2013
From Peter Bala, Sep 25 2013: (Start)
a(n) = n!*e^2 - Sum_{k >= 0} 2^(n + k + 1)/((n + 1)*...*(n + k + 1)).
= n!*e^2 - e^2*( Integral_{t = 0..2} t^n*exp(-t) dt )
= e^2*( Integral_{t >= 2} t^n*exp(-t) dt )
= e^2*( Integral_{t >= 0} t^n*exp(-t)*Heaviside(t-2) dt ),
an integral representation of a(n) as the n-th moment of a nonnegative function on the positive half-axis.
Bottomley's second-order recurrence above a(n) = (n + 2)*a(n-1) - 2*(n - 1)*a(n-2) has n! as a second solution. This yields the finite continued fraction expansion a(n)/n! = 1/(1 - 2/(3 - 2/(4 - 4/(5 - ... - 2*(n - 1)/(n + 2))))) valid for n >= 2. Letting n tend to infinity gives the infinite continued fraction expansion e^2 = 1/(1 - 2/(3 - 2/(4 - 4/(5 - ... - 2*(n - 1)/(n + 2 - ...))))). (End)
a(n) = 2^(n+1)*U(1, n+2, 2), where U is the Bessel U function. - Peter Luschny, Nov 26 2014
For n >= 4, a(n) = r - (r mod 2^(n - floor((2/n) + log_2(n)))) where r = n! * e^2 - 2^(n+1)/(n+1). - Stan Wagon, Apr 28 2016
G.f.: A(x) = 1/(1 - 2*x - x/(1 - x/(1 - 2*x - 2*x/(1 - 2*x/(1 - 2*x - 3*x/(1 - 3*x/(1 - 2*x - 4*x/(1 - 4*x/(1 - 2*x - ... ))))))))). - Peter Bala, May 26 2017
a(n) = Sum_{k=0..n} (-1)^(n-k)*A137346(n, k). - Mélika Tebni, May 10 2022 [This is equivalent to a(n) = KummerU(-n, -n, 2). - Peter Luschny, May 10 2022]
a(n) = F(n), where the function F(x) := 2^(x+1) * Integral_{t >= 0} e^(-2*t)*(1 + t)^x dt smoothly interpolates this sequence to all real values of x. - Peter Bala, Sep 05 2023

A055209 a(n) = Product_{i=0..n} i!^2.

Original entry on oeis.org

1, 1, 4, 144, 82944, 1194393600, 619173642240000, 15728001190723584000000, 25569049282962188245401600000000, 3366980847587422591723894776791040000000000, 44337041641882947649156022595410930014617600000000000000
Offset: 0

Views

Author

N. J. A. Sloane, Jul 18 2000

Keywords

Comments

a(n) is the discriminant of the polynomial x(x+1)(x+2)...(x+n). - Yuval Dekel (dekelyuval(AT)hotmail.com), Nov 13 2003
This is the Hankel transform (see A001906 for definition) of the sequence: 1, 0, 1, 0, 5, 0, 61, 0, 1385, 0, 50521, ... (see A000364: Euler numbers). - Philippe Deléham, Apr 06 2005
Also, for n>0, the quotient of (-1)^(n-1)S(u)^(n^2)/S(un) and the determinant of the (n-1) X (n-1) square matrix [P'(u), P''(u), ..., P^(n-1)(u); P''(u), P'''(u), ..., P^(n)(u); P'''(u), P^(4)(u), ..., P^(n+1)(u); ...; P^(n-1)(u), P^(n)(u), ..., P^(2n-3)(u)] where S and P are the Weierstrass Sigma and The Weierstrass P-function, respectively and f^(n) is the n-th derivative of f. See the King and Schwarz & Weierstrass references. - Balarka Sen, Jul 31 2013
a(n) is the number of idempotent monotonic labeled magmas. That is, prod(i,j) >= max(i,j) and prod(i,i) = i. - Chad Brewbaker, Nov 03 2013
Ramanujan's infinite nested radical sqrt(1+2*sqrt(1+3*sqrt(1+...))) = 3 can be written sqrt(1+sqrt(4+sqrt(144+...))) = sqrt(a(1)+sqrt(a(2)+sqrt(a(3)+...))). Vijayaraghavan used that to prove convergence of Ramanujan's formula. - Petros Hadjicostas and Jonathan Sondow, Mar 22 2014
a(n) is the determinant of the (n+1)-th order Hankel matrix whose (i,j)-entry is equal to A000142(i+j), i,j = 0,1,...,n. - Michael Shmoish, Sep 02 2020

References

  • R. Bruce King, Beyond The Quartic Equation, Birkhauser Boston, Berlin, 1996, p. 72.
  • Srinivasa Ramanujan, J. Indian Math. Soc., III (1911), 90 and IV (1912), 226.
  • T. Vijayaraghavan, in Collected Papers of Srinivasa Ramanujan, G.H. Hardy, P.V. Seshu Aiyar and B.M. Wilson, eds., Cambridge Univ. Press, 1927, p. 348; reprinted by Chelsea, 1962.

Crossrefs

Cf. A055209 is the Hankel transform (see A001906 for definition) of A000023, A000142, A000166, A000522, A003701, A010842, A010843, A051295, A052186, A053486, A053487.

Programs

  • Magma
    [1] cat [(&*[(Factorial(k))^2: k in [1..n]]): n in [1..10]]; // G. C. Greubel, Oct 14 2018
  • Maple
    seq(mul(mul(j^2,j=1..k), k=0..n), n=0..10); # Zerinvary Lajos, Sep 21 2007
  • Mathematica
    Table[Product[(i!)^2,{i,n}],{n,0,11}] (* Harvey P. Dale, Jul 06 2011 *)
    Table[BarnesG[n + 2]^2, {n, 0, 11}] (* Jan Mangaldan, May 07 2014 *)
  • PARI
    a(n)=prod(i=1,n,i!)^2 \\ Charles R Greathouse IV, Jan 12 2012
    
  • Sage
    def A055209(n) :
       return prod(factorial(i)^(2) for i in (0..n))
    [A055209(n) for n in (0..11)] # Jani Melik, Jun 06 2015
    

Formula

a(n) = A000178(n)^2. - Philippe Deléham, Mar 06 2004
a(n) = Product_{i=0..n} i^(2*n - 2*i + 2). - Charles R Greathouse IV, Jan 12 2012
Asymptotic: a(n) ~ exp(2*zeta'(-1)-3/2*(1+n^2)-3*n)*(2*Pi)^(n+1)*(n+1)^ (n^2+2*n+5/6). - Peter Luschny, Jun 23 2012
lim_{n->infinity} a(n)^(2^(-(n+1))) = 1. - Vaclav Kotesovec, Jun 06 2015
Sum_{n>=0} 1/a(n) = A258619. - Amiram Eldar, Nov 17 2020

A383382 Expansion of e.g.f. exp(-3*x) / (1-x)^5.

Original entry on oeis.org

1, 2, 9, 48, 321, 2502, 22329, 223668, 2481921, 30187242, 399071529, 5694475608, 87197543361, 1425766728942, 24787205125209, 456477484618908, 8875541469155841, 181670665706512722, 3904395263350689609, 87898121215165479168, 2068411075529464370241, 50778930934558144895382
Offset: 0

Views

Author

Seiichi Manyama, Apr 24 2025

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-3*x)/(1-x)^5))

Formula

a(n) = n! * Sum_{k=0..n} (-3)^(n-k) * binomial(k+4,4)/(n-k)!.
a(0) = 1, a(1) = 2; a(n) = (n+1)*a(n-1) + 3*(n-1)*a(n-2).
a(n) ~ sqrt(2*Pi) * n^(n + 9/2) / (24*exp(n+3)). - Vaclav Kotesovec, Apr 25 2025

A292977 Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where column k is the expansion of e.g.f. exp(-k*x)/(1 - x).

Original entry on oeis.org

1, 1, 1, 1, 0, 2, 1, -1, 1, 6, 1, -2, 2, 2, 24, 1, -3, 5, -2, 9, 120, 1, -4, 10, -12, 8, 44, 720, 1, -5, 17, -34, 33, 8, 265, 5040, 1, -6, 26, -74, 120, -78, 112, 1854, 40320, 1, -7, 37, -138, 329, -424, 261, 656, 14833, 362880, 1, -8, 50, -232, 744, -1480, 1552, -360, 5504, 133496, 3628800
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 27 2017

Keywords

Comments

A(n,k) is the k-th inverse binomial transform of A000142 evaluated at n.
Can be considered as extension of the array A089258 to columns with negative indices via A089258(n,k) = A(n,-k) or, vice versa, A(n,k) = A089258(n,-k). - Max Alekseyev, Mar 06 2018

Examples

			Square array begins:
n=0:    1,   1,   1,    1,     1,      1,  ...
n=1:    1,   0,  -1,   -2,    -3,     -4,  ...
n=2:    2,   1,   2,    5,    10,     17,  ...
n=3:    6,   2,  -2,  -12,   -34,    -74,  ...
n=4:   24,   9,   8,   33,   120,    329,  ...
n=5:  120,  44,   8,  -78,  -424,  -1480,  ...
...
E.g.f. of column k: A_k(x) = 1 + (1 - k)*x/1! +  (k^2 - 2*k + 2)*x^2/2! + (-k^3 + 3*k^2 - 6*k + 6) x^3/3! + (k^4 - 4*k^3 + 12*k^2 - 24*k + 24)*x^4/4! + ...
		

Crossrefs

Columns: A000142 (k=0), A000166 (k=1), A000023 (k=2), A010843 (k=3, with offset 0).
Main diagonal: A134095 (absolute values).

Programs

  • Mathematica
    Table[Function[k, n! SeriesCoefficient[Exp[-k x]/(1 - x), {x, 0, n}]][j - n], {j, 0, 10}, {n, 0, j}] // Flatten
    FullSimplify[Table[Function[k, Exp[-k] Gamma[n + 1, -k]][j - n], {j, 0, 10}, {n, 0, j}]] // Flatten

Formula

T(n, k) = n! * Sum_{j=0..n} (-k)^j/j!. - Max Alekseyev, Mar 06 2018
E.g.f. of column k: exp(-k*x)/(1 - x).

A346398 Expansion of e.g.f. -log(1 - x) * exp(-3*x).

Original entry on oeis.org

0, 1, -5, 20, -72, 249, -825, 2736, -8568, 29385, -74709, 417636, 698544, 21853233, 244181223, 3608612208, 54277152624, 878859416817, 15072037479099, 273539358115092, 5235734703888648, 105419854939796937, 2227408664800976487, 49278475088626210704, 1139260699549648412856
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 15 2021

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 24; CoefficientList[Series[-Log[1 - x] Exp[-3 x], {x, 0, nmax}], x] Range[0, nmax]!
    Table[n! Sum[(-3)^k/((n - k) k!), {k, 0, n - 1}], {n, 0, 24}]
  • PARI
    a_vector(n) = my(v=vector(n+1, i, if(i==2, 1, 0))); for(i=2, n, v[i+1]=(i-4)*v[i]+3*(i-1)*v[i-1]+(-3)^(i-1)); v; \\ Seiichi Manyama, May 27 2022

Formula

a(n) = n! * Sum_{k=0..n-1} (-3)^k / ((n-k) * k!).
a(0) = 0, a(1) = 1, a(n) = (n-4) * a(n-1) + 3 * (n-1) * a(n-2) + (-3)^(n-1). - Seiichi Manyama, May 27 2022
a(n) ~ exp(-3) * (n-1)!. - Vaclav Kotesovec, Jun 08 2022

A383378 Expansion of e.g.f. exp(-3*x) / (1-x)^4.

Original entry on oeis.org

1, 1, 5, 21, 129, 897, 7317, 67365, 692577, 7849953, 97199109, 1304688789, 18863836065, 292198665249, 4826470920021, 84669407740773, 1571901715253313, 30786460730863425, 634323280633460613, 13714611211502376597, 310448651226154786881, 7342298348439393120321
Offset: 0

Views

Author

Seiichi Manyama, Apr 24 2025

Keywords

Crossrefs

Column k=3 of A383341.

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-3*x)/(1-x)^4))

Formula

a(n) = n! * Sum_{k=0..n} (-3)^(n-k) * binomial(k+3,3)/(n-k)!.
a(0) = a(1) = 1; a(n) = n*a(n-1) + 3*(n-1)*a(n-2).
a(n) = A137775(n+2)/(3*(n+1)).
a(n) ~ sqrt(2*Pi) * n^(n + 7/2) / (6*exp(n+3)). - Vaclav Kotesovec, Apr 25 2025

A354942 a(n) = Sum_{k=0..n} binomial(n,k)^3 * k! * (-3)^(n-k).

Original entry on oeis.org

1, -2, -13, 60, 1113, 1002, -149049, -1932696, 7188705, 676972566, 10821753819, -32865363468, -5892948042327, -144308265498270, -748826955982593, 74472859430936928, 3199088479682040129, 57854159449349840046, -654712764990637945725, -87482030500940669619156
Offset: 0

Views

Author

Ilya Gutkovskiy, Jun 12 2022

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n, k]^3 k! (-3)^(n - k), {k, 0, n}], {n, 0, 19}]
    nmax = 19; CoefficientList[Series[BesselI[0, 2 Sqrt[x]] Sum[(-3)^k x^k/k!^3, {k, 0, nmax}], {x, 0, nmax}], x] Range[0, nmax]!^3
  • PARI
    a(n) = sum(k=0, n, binomial(n,k)^3 * k! * (-3)^(n-k)); \\ Michel Marcus, Jun 12 2022

Formula

Sum_{n>=0} a(n) * x^n / n!^3 = BesselI(0,2*sqrt(x)) * Sum_{n>=0} (-3)^n * x^n / n!^3.

A296661 a(n) = (exp(k)*Gamma(1+n, k) - exp(-k)*Gamma(1+n, -k))/k! for k = 3.

Original entry on oeis.org

0, 1, 2, 15, 60, 381, 2286, 16731, 133848, 1211193, 12111930, 133290279, 1599483348, 20793814965, 291113409510, 4366705925619, 69867294809904, 1187744054815089, 21379392986671602, 406208467134180927, 8124169342683618540
Offset: 0

Views

Author

Peter Luschny, Dec 18 2017

Keywords

Crossrefs

Programs

  • Maple
    A296661 := n -> (exp(3)*GAMMA(1+n,3) - exp(-3)*GAMMA(1+n,-3))/6:
    seq(simplify(A296661(n)), n=0..20);

Formula

a(n) = (A053486(n) - A010843(n+1))/6. [corrected by Jason Yuen, Nov 23 2024]
D-finite with recurrence a(n) -n*a(n-1) -9*a(n-2) +9*(n-2)*a(n-3)=0. - R. J. Mathar, Sep 29 2020
Showing 1-9 of 9 results.