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-10 of 14 results. Next

A256890 Triangle T(n,k) = t(n-k, k); t(n,m) = f(m)*t(n-1,m) + f(n)*t(n,m-1), where f(x) = x + 2.

Original entry on oeis.org

1, 2, 2, 4, 12, 4, 8, 52, 52, 8, 16, 196, 416, 196, 16, 32, 684, 2644, 2644, 684, 32, 64, 2276, 14680, 26440, 14680, 2276, 64, 128, 7340, 74652, 220280, 220280, 74652, 7340, 128, 256, 23172, 357328, 1623964, 2643360, 1623964, 357328, 23172, 256, 512, 72076, 1637860, 10978444, 27227908, 27227908, 10978444, 1637860, 72076, 512
Offset: 0

Views

Author

Dale Gerdemann, Apr 12 2015

Keywords

Comments

Related triangles may be found by varying the function f(x). If f(x) is a linear function, it can be parameterized as f(x) = a*x + b. With different values for a and b, the following triangles are obtained:
a\b 1.......2.......3.......4.......5.......6
The row sums of these, and similarly constructed number triangles, are shown in the following table:
a\b 1.......2.......3.......4.......5.......6.......7.......8.......9
The formula can be further generalized to: t(n,m) = f(m+s)*t(n-1,m) + f(n-s)*t(n,m-1), where f(x) = a*x + b. The following table specifies triangles with nonzero values for s (given after the slash).
a\b 0 1 2 3
-2 A130595/1
-1
0
With the absolute value, f(x) = |x|, one obtains A038221/3, A038234/4, A038247/5, A038260/6, A038273/7, A038286/8, A038299/9 (with value for s after the slash).
If f(x) = A000045(x) (Fibonacci) and s = 1, the result is A010048 (Fibonomial).
In the notation of Carlitz and Scoville, this is the triangle of generalized Eulerian numbers A(r, s | alpha, beta) with alpha = beta = 2. Also the array A(2,1,4) in the notation of Hwang et al. (see page 31). - Peter Bala, Dec 27 2019

Examples

			Array, t(n, k), begins as:
   1,    2,      4,        8,        16,         32,          64, ...;
   2,   12,     52,      196,       684,       2276,        7340, ...;
   4,   52,    416,     2644,     14680,      74652,      357328, ...;
   8,  196,   2644,    26440,    220280,    1623964,    10978444, ...;
  16,  684,  14680,   220280,   2643360,   27227908,   251195000, ...;
  32, 2276,  74652,  1623964,  27227908,  381190712,  4677894984, ...;
  64, 7340, 357328, 10978444, 251195000, 4677894984, 74846319744, ...;
Triangle, T(n, k), begins as:
    1;
    2,     2;
    4,    12,      4;
    8,    52,     52,       8;
   16,   196,    416,     196,      16;
   32,   684,   2644,    2644,     684,      32;
   64,  2276,  14680,   26440,   14680,    2276,     64;
  128,  7340,  74652,  220280,  220280,   74652,   7340,   128;
  256, 23172, 357328, 1623964, 2643360, 1623964, 357328, 23172,   256;
		

Crossrefs

Programs

  • Magma
    A256890:= func< n,k | (&+[(-1)^(k-j)*Binomial(j+3,j)*Binomial(n+4,k-j)*(j+2)^n: j in [0..k]]) >;
    [A256890(n,k): k in [0..n], n in [0..10]]; // G. C. Greubel, Oct 18 2022
    
  • Mathematica
    Table[Sum[(-1)^(k-j)*Binomial[j+3, j] Binomial[n+4, k-j] (j+2)^n, {j,0,k}], {n,0, 9}, {k,0,n}]//Flatten (* Michael De Vlieger, Dec 27 2019 *)
  • PARI
    t(n,m) = if ((n<0) || (m<0), 0, if ((n==0) && (m==0), 1, (m+2)*t(n-1, m) + (n+2)*t(n, m-1)));
    tabl(nn) = {for (n=0, nn, for (k=0, n, print1(t(n-k, k), ", ");); print(););} \\ Michel Marcus, Apr 14 2015
    
  • SageMath
    def A256890(n,k): return sum((-1)^(k-j)*Binomial(j+3,j)*Binomial(n+4,k-j)*(j+2)^n for j in range(k+1))
    flatten([[A256890(n,k) for k in range(n+1)] for n in range(11)]) # G. C. Greubel, Oct 18 2022

Formula

T(n,k) = t(n-k, k); t(0,0) = 1, t(n,m) = 0 if n < 0 or m < 0 else t(n,m) = f(m)*t(n-1,m) + f(n)*t(n,m-1), where f(x) = x + 2.
Sum_{k=0..n} T(n, k) = A001715(n).
T(n,k) = Sum_{j = 0..k} (-1)^(k-j)*binomial(j+3,j)*binomial(n+4,k-j)*(j+2)^n. - Peter Bala, Dec 27 2019
Modified rule of Pascal: T(0,0) = 1, T(n,k) = 0 if k < 0 or k > n else T(n,k) = f(n-k) * T(n-1,k-1) + f(k) * T(n-1,k), where f(x) = x + 2. - Georg Fischer, Nov 11 2021
From G. C. Greubel, Oct 18 2022: (Start)
T(n, n-k) = T(n, k).
T(n, 0) = A000079(n). (End)

A049209 a(n) = -Product_{k=0..n} (7*k-1); sept-factorial numbers.

Original entry on oeis.org

1, 6, 78, 1560, 42120, 1432080, 58715280, 2818333440, 155008339200, 9610517030400, 663125675097600, 50397551307417600, 4182996758515660800, 376469708266409472000, 36517561701841718784000, 3797826416991538753536000, 421558732286060801642496000
Offset: 0

Views

Author

Keywords

Crossrefs

Row sums of triangle A051186 (scaled Stirling1 triangle).
Sequences of the form m^n*Pochhammer((m-1)/m, n): A000007 (m=1), A001147 (m=2), A008544 (m=3), A008545 (m=4), A008546 (m=5), A008543 (m=6), this sequence (m=7), A049210 (m=8), A049211 (m=9), A049212 (m=10), A254322 (m=11), A346896 (m=12).

Programs

  • Magma
    [ -&*[ (7*k-1): k in [0..n-1] ]: n in [1..15] ]; // Klaus Brockhaus, Nov 10 2008
    
  • Mathematica
    CoefficientList[Series[(1-7*x)^(-6/7),{x,0,20}],x] * Range[0,20]! (* Vaclav Kotesovec, Jan 28 2015 *)
    With[{m=7}, Table[m^n*Pochhammer[(m-1)/m, n], {n, 0, 30}]] (* G. C. Greubel, Feb 16 2022 *)
  • Sage
    m=7; [m^n*rising_factorial((m-1)/m, n) for n in (0..30)] # G. C. Greubel, Feb 16 2022

Formula

a(n) = 6*A034833(n) = (7*n-1)*(!^7), n >= 1, a(0) := 1.
a(n) = Product_{k=1..n} (7*k - 1). a(0) = 1; a(n) = (7*n - 1)*a(n-1) for n > 0. - Klaus Brockhaus, Nov 10 2008
G.f.: 1/(1-6*x/(1-7*x/(1-13*x/(1-14*x/(1-20*x/(1-21*x/(1-27*x/(1-28*x/(1-...(continued fraction). - Philippe Deléham, Jan 08 2012
a(n) = (-1)^n*Sum_{k=0..n} 7^k*s(n+1,n+1-k), where s(n,k) are the Stirling numbers of the first kind, A048994. - Mircea Merca, May 03 2012
a(n) = 7^n * Gamma(n+6/7) / Gamma(6/7). - Vaclav Kotesovec, Jan 28 2015
E.g.f.: (1-7*x)^(-6/7). - Vaclav Kotesovec, Jan 28 2015
From Nikolaos Pantelidis, Dec 19 2020: (Start)
G.f.: 1/G(0) where G(k) = 1 - (14*k+6)*x - 7*(k+1)*(7*k+6)*x^2/G(k+1); (continued fraction).
which starts as 1/(1-6*x-42*x^2/(1-20*x-182*x^2/(1-34*x-420*x^2/(1-48*x-756*x^2/(1-62*x-1190*x^2/(1-... )))))) (Jacobi continued fraction).
G.f.: 1/Q(0) where Q(k) = 1 - (7*k+6)*x/(1 - (7*k+7)*x/Q(k+1) ); (continued fraction). (End)
Sum_{n>=0} 1/a(n) = 1 + (e/7)^(1/7)*(Gamma(6/7) - Gamma(6/7, 1/7)). - Amiram Eldar, Dec 19 2022

A035022 One eighth of 9-factorial numbers.

Original entry on oeis.org

1, 17, 442, 15470, 680680, 36076040, 2236714480, 158806728080, 12704538246400, 1130703903929600, 110808982585100800, 11856561136605785600, 1375361091846271129600, 171920136480783891200000, 23037298288425041420800000, 3294333655244780923174400000, 500738715597206700322508800000
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [n le 1 select 1 else (9*n-1)*Self(n-1): n in [1..40]]; // G. C. Greubel, Oct 19 2022
    
  • Maple
    f := gfun:-rectoproc({(9*n - 1)*a(n - 1) - a(n) = 0, a(1) = 1}, a(n), remember);
    map(f, [$ (1 .. 20)]); # Georg Fischer, Feb 15 2020
  • Mathematica
    Table[9^n*Pochhammer[8/9, n]/8, {n, 40}] (* G. C. Greubel, Oct 19 2022 *)
  • SageMath
    [9^n*rising_factorial(8/9,n)/8 for n in range(1,40)] # G. C. Greubel, Oct 19 2022

Formula

8*a(n) = (9*n-1)(!^9) := Product_{j=1..n} (9*j - 1).
a(n) = (9*n)!/(n!*2^4*3^(4*n)*5*7*A045756(n)*A035012(n)*A007559(n)*A035017(n) *A035018(n)*A034000(n) *A035021(n)).
E.g.f.: (-1+(1-9*x)^(-8/9))/8.
D-finite with recurrence: a(1) = 1, a(n) = (9*n - 1)*a(n-1) for n > 1. - Georg Fischer, Feb 15 2020
a(n) = (1/8) * 9^n * Pochhammer(n, 8/9). - G. C. Greubel, Oct 19 2022
From Amiram Eldar, Dec 21 2022: (Start)
a(n) = A049211(n)/8.
Sum_{n>=1} 1/a(n) = 8*(e/9)^(1/9)*(Gamma(8/9) - Gamma(8/9, 1/9)). (End)

A049210 a(n) = -Product_{k=0..n} (8*k-1); octo-factorial numbers.

Original entry on oeis.org

1, 7, 105, 2415, 74865, 2919735, 137227545, 7547514975, 475493443425, 33760034483175, 2667042724170825, 232032717002861775, 22043108115271868625, 2270440135873002468375, 252018855081903273989625, 29990243754746489604765375, 3808760956852804179805202625
Offset: 0

Views

Author

Keywords

Crossrefs

Sequences of the form m^n*Pochhammer((m-1)/m, n): A000007 (m=1), A001147 (m=2), A008544 (m=3), A008545 (m=4), A008546 (m=5), A008543 (m=6), A049209 (m=7), this sequence (m=8), A049211 (m=9), A049212 (m=10), A254322 (m=11), A346896 (m=12).

Programs

  • Magma
    m:=8; [Round(m^n*Gamma(n +(m-1)/m)/Gamma((m-1)/m)): n in [0..30]]; // G. C. Greubel, Feb 16 2022
  • Mathematica
    FoldList[Times,1,8*Range[20]-1] (* Harvey P. Dale, Aug 03 2014 *)
    CoefficientList[Series[(1-8*x)^(-7/8),{x,0,20}],x] * Range[0,20]! (* Vaclav Kotesovec, Jan 28 2015 *)
  • PARI
    a(n) = -prod(k=0, n, 8*k-1); \\ Michel Marcus, Jan 08 2015
    
  • Sage
    m=8; [m^n*rising_factorial((m-1)/m, n) for n in (0..30)] # G. C. Greubel, Feb 16 2022
    

Formula

a(n) = 7*A034975(n) = (8*n-1)(!^8), n >= 1, a(0) = 1.
G.f.: 1/(1-7*x/(1-8*x/(1-15*x/(1-16*x/(1-23*x/(1-24*x/(1-31*x/(1-32*x/(1-... (continued fraction). - Philippe Deléham, Jan 07 2012
a(n) = (-1)^n*Sum_{k=0..n} 8^k*s(n+1,n+1-k), where s(n,k) are the Stirling numbers of the first kind, A048994. - Mircea Merca, May 03 2012
G.f.: ( 1 - 1/Q(0) )/x where Q(k) = 1 - x*(8*k-1)/(1 - x*(8*k+8)/Q(k+1) ); (continued fraction). - Sergei N. Gladkovskii, Mar 20 2013
a(n) = 8^n*Gamma(n+7/8)/Gamma(7/8). - R. J. Mathar, Mar 20 2013
E.g.f: (1-8*x)^(-7/8). - Vaclav Kotesovec, Jan 28 2015
G.f.: 1/(1-7*x-56*x^2/(1-23*x-240*x^2/(1-39*x-552*x^2/(1-55*x-992*x^2/(1-71*x-1560*x^2/(1-... )))))) (Jacobi continued fraction). - Nikolaos Pantelidis, Dec 09 2020
G.f.: 1/G(0) where G(k) = 1 - (16*k+7)*x - 8*(k+1)*(8*k+7)*x^2/G(k+1); (continued fraction). - Nikolaos Pantelidis, Dec 19 2020
Sum_{n>=0} 1/a(n) = 1 + (e/8)^(1/8)*(Gamma(7/8) - Gamma(7/8, 1/8)). - Amiram Eldar, Dec 20 2022

A049212 a(n) = -Product_{k=0..n} (10*k - 1); deca-factorial numbers.

Original entry on oeis.org

1, 9, 171, 4959, 193401, 9476649, 559122291, 38579438079, 3047775608241, 271252029133449, 26853950884211451, 2927080646379048159, 348322596919106730921, 44933615002564768288809, 6245772485356502792144451, 930620100318118916029523199, 147968595950580907648694188641
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Round(10^n*Gamma(n+9/10)/Gamma(9/10)): n in [0..25]]; // G. C. Greubel, Feb 03 2022
    
  • Mathematica
    CoefficientList[Series[(1-10*x)^(-9/10),{x,0,20}],x] * Range[0,20]! (* Vaclav Kotesovec, Jan 28 2015 *)
  • PARI
    a(n) = {-prod(k=0, n, 10*k-1)} \\ Andrew Howroyd, Jan 02 2020
    
  • Sage
    [10^n*rising_factorial(9/10, n) for n in (0..25)] # G. C. Greubel, Feb 03 2022

Formula

a(n) = 9*A035278(n) = (10*n-1)(!^10), n >= 1, a(0) = 1.
a(n) = (-1)^n*Sum_{k=0..n} 10^k*s(n+1,n+1-k), where s(n,k) are the Stirling numbers of the first kind, A048994. - Mircea Merca, May 03 2012
a(n) = 10^n * Gamma(n+9/10) / Gamma(9/10). - Vaclav Kotesovec, Jan 28 2015
E.g.f.: (1-10*x)^(-9/10). - Vaclav Kotesovec, Jan 28 2015
From Nikolaos Pantelidis, Jan 17 2021: (Start)
G.f.: 1/G(0) where G(k) = 1 - (20*k+9)*x - 10*(k+1)*(10*k+9)*x^2/G(k+1) (continued fraction).
G.f.: 1/(1-9*x-90*x^2/(1-29*x-380*x^2/(1-49*x-870*x^2/(1-69*x-1560*x^2/(1-89*x-2450*x^2/(1-...)))))) (Jacobi continued fraction).
G.f.: 1/Q(0) where Q(k) = 1 - x*(10*k+9)/(1 - x*(10*k+10)/Q(k+1)) (continued fraction).
G.f.: 1/(1-9*x/(1-10*x/(1-19*x/(1-20*x/(1-29*x/(1-30*x/(1-39*x/(1-40*x/(1-49*x/(1-50*x/(1-...))))))))))) (Stieltjes continued fraction).
(End)
G.f.: Hypergeometric2F0([1, 9/10], --; 10*x). - G. C. Greubel, Feb 03 2022
Sum_{n>=0} 1/a(n) = 1 + (e/10)^(1/10)*(Gamma(9/10) - Gamma(9/10, 1/10)). - Amiram Eldar, Dec 22 2022

Extensions

Terms a(14) and beyond from Andrew Howroyd, Jan 02 2020

A254322 Expansion of e.g.f.: (1-11*x)^(-10/11).

Original entry on oeis.org

1, 10, 210, 6720, 288960, 15603840, 1014249600, 77082969600, 6706218355200, 657209398809600, 71635824470246400, 8596298936429568000, 1126115160672273408000, 159908352815462823936000, 24465977980765812062208000, 4012420388845593178202112000
Offset: 0

Views

Author

Vaclav Kotesovec, Jan 28 2015

Keywords

Comments

Generally, for k > 1, if e.g.f. = (1-k*x)^(-(k-1)/k) then a(n) ~ n! * k^n / (n^(1/k) * Gamma((k-1)/k)).

Crossrefs

Sequences of the form k^n*Pochhammer((k-1)/k, n): A000007 (k=1), A001147 (k=2), A008544 (k=3), A008545 (k=4), A008546 (k=5), A008543 (k=6), A049209 (k=7), A049210 (k=8), A049211 (k=9), A049212 (k=10), this sequence (k=11), A346896 (k=12).

Programs

  • Magma
    m=11; [Round(m^n*Gamma(n +(m-1)/m)/Gamma((m-1)/m)): n in [0..20]]; // G. C. Greubel, Feb 08 2022
    
  • Mathematica
    CoefficientList[Series[(1-11*x)^(-10/11), {x, 0, 20}], x] * Range[0, 20]!
    FullSimplify[Table[11^n * Gamma[n+10/11] / Gamma[10/11], {n, 0, 18}]]
  • Sage
    m=11; [m^n*rising_factorial((m-1)/m, n) for n in (0..20)] # G. C. Greubel, Feb 08 2022

Formula

D-finite with recurrence: a(0) = 1; a(n) = (11*n-1) * a(n-1) for n > 0. [corrected by Georg Fischer, Dec 23 2019]
a(n) = 11^n * Gamma(n+10/11) / Gamma(10/11).
a(n) ~ n! * 11^n / (n^(1/11) * Gamma(10/11)).
From Nikolaos Pantelidis, Jan 17 2021: (Start)
G.f.: 1/G(0) where G(k) = 1 - (22*k+10)*x - 11*(k+1)*(11*k+10)*x^2/G(k+1) (continued fraction).
G.f.: 1/(1-10*x-110*x^2/(1-32*x-462*x^2/(1-54*x-1056*x^2/(1-76*x-1892*x^2/(1-98*x-2970*x^2/(1-...)))))) (Jacobi continued fraction).
G.f.: 1/Q(0) where Q(k) = 1 - x*(11*k+10)/(1 - x*(11*k+11)/Q(k+1)) (continued fraction).
G.f.: 1/(1-10*x/(1-11*x/(1-21*x/(1-22*x/(1-32*x/(1-33*x/(1-43*x/(1-44*x/(1-54*x/(1-55*x/(1-...))))))))))) (Stieltjes continued fraction).
(End)
G.f.: hypergeometric2F0([1, 10/11], [--], 11*x). - G. C. Greubel, Feb 08 2022
Sum_{n>=0} 1/a(n) = 1 + (e/11)^(1/11)*(Gamma(10/11) - Gamma(10/11, 1/11)). - Amiram Eldar, Dec 22 2022

A346896 Expansion of e.g.f.: (1-12*x)^(-11/12).

Original entry on oeis.org

1, 11, 253, 8855, 416185, 24554915, 1743398965, 144702114095, 13746700839025, 1470896989775675, 175036741783305325, 22929813173612997575, 3278963283826658653225, 508239308993132091249875, 84875964601853059238729125, 15192797663731697603732513375
Offset: 0

Views

Author

Nikolaos Pantelidis, Aug 06 2021

Keywords

Crossrefs

Sequences of the form m^n*Pochhammer((m-1)/m, n): A000007 (m=1), A001147 (m=2), A008544 (m=3), A008545 (m=4), A008546 (m=5), A008543 (m=6), A049209 (m=7), A049210 (m=8), A049211 (m=9), A049212 (m=10), A254322 (m=11), this sequence (m=12).

Programs

  • Magma
    m:=12; [Round(m^n*Gamma(n +(m-1)/m)/Gamma((m-1)/m)): n in [0..20]]; // G. C. Greubel, Feb 16 2022
  • Mathematica
    CoefficientList[Series[(1-12*x)^(-11/12),{x,0,20}], x] * Range[0, 20]!
    FullSimplify[Table[12^n Gamma[n+11/12]/Gamma[11/12],{n,0,15}]] (* Stefano Spezia, Aug 07 2021 *)
  • Sage
    m=12; [m^n*rising_factorial((m-1)/m, n) for n in (0..20)] # G. C. Greubel, Feb 16 2022
    

Formula

G.f.: 1/(1-11*x/(1-12*x/(1-23*x/(1-24*x/(1-35*x/(1-36*x/(1-47*x/(1-48*x/(1-59*x/(1-60*x/(1-...))))))))))) (Stieltjes continued fraction).
G.f.: 1/Q(0) where Q(k) = 1 - x*(12*k+11)/(1 - x*(12*k+12)/Q(k+1) ) (continued fraction).
G.f.: 1/(1-11*x-132*x^2/(1-35*x-552*x^2/(1-59*x-1260*x^2/(1-83*x-2256*x^2/(1-107*x-3540*x^2/(1-...)))))) (Jacobi continued fraction).
G.f.: 1/G(0) where G(k) = 1 - x*(24*k+11) - 12*(k+1)*(12*k+11)*x^2/G(k+1) (continued fraction).
a(n) = 12^n*Gamma(n+11/12)/Gamma(11/12). - Stefano Spezia, Aug 07 2021
Sum_{n>=0} 1/a(n) = 1 + (e/12)^(1/12)*(Gamma(11/12) - Gamma(11/12, 1/12)). - Amiram Eldar, Dec 22 2022

A147629 9-factorial numbers (4).

Original entry on oeis.org

1, 5, 70, 1610, 51520, 2112320, 105616000, 6231344000, 423731392000, 32627317184000, 2805949277824000, 266565181393280000, 27722778864901120000, 3132674011733826560000, 382186229431526840320000, 50066396055530016081920000, 7009295447774202251468800000
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Round(9^(n-1)*Gamma(n-1 +5/9)/Gamma(5/9)): n in [1..20]]; // G. C. Greubel, Dec 03 2019
    
  • Maple
    seq(9^(n-1)*pochhammer(5/9, n-1), n = 1..20); # G. C. Greubel, Dec 03 2019
  • Mathematica
    Table[9^(n-1)*Pochhammer[5/9, n-1], {n,20}] (* G. C. Greubel, Dec 03 2019 *)
  • PARI
    vector(20, n, prod(j=0,n-2, 9*j+5) ) \\ G. C. Greubel, Dec 03 2019
    
  • Sage
    [9^(n-1)*rising_factorial(5/9, n-1) for n in (1..20)] # G. C. Greubel, Dec 03 2019

Formula

a(n+1) = Sum_{k=0..n} A132393(n,k)*5^k*9^(n-k). - Philippe Deléham, Nov 09 2008
From R. J. Mathar, Nov 09 2008: (Start)
a(n) = a(n-1) + (4 + 9*(n-2))*a(n-1) = (9*n-13)*a(n-1).
a(n) = 9^(n-1)*Gamma(n-4/9)/Gamma(5/9).
G.f.: z*2F0(5/9,1; -; 9*z). (End)
a(n) = (-4)^n*Sum_{k=0..n} (9/4)^k*s(n+1,n+1-k), where s(n,k) are the Stirling numbers of the first kind, A048994. - Mircea Merca, May 03 2012
Sum_{n>=1} 1/a(n) = 1 + (e/9^4)^(1/9)*(Gamma(5/9) - Gamma(5/9, 1/9)). - Amiram Eldar, Dec 21 2022

A147630 a(1) = 1; for n>1, a(n) = Product_{k = 1..n-1} (9k - 3).

Original entry on oeis.org

1, 6, 90, 2160, 71280, 2993760, 152681760, 9160905600, 632102486400, 49303993939200, 4289447472710400, 411786957380198400, 43237630524920832000, 4929089879840974848000, 606278055220439906304000, 80028703289098067632128000, 11284047163762827536130048000
Offset: 1

Views

Author

Keywords

Comments

Original name was: 9-factorial numbers (5).

Crossrefs

Programs

  • Magma
    [Round(9^n*Gamma(n+6/9)/Gamma(6/9)): n in [0..20]]; // Vincenzo Librandi, Feb 21 2015
    
  • Mathematica
    s=1;lst={s};Do[s+=n*s;AppendTo[lst,s],{n,5,2*5!,9}];lst
    Table[Product[9k-3,{k,1,n-1}],{n,20}] (* Harvey P. Dale, Sep 01 2016 *)
  • Maxima
    a(n):=n!*sum(binomial(k,n-k-1)*3^k*(-1)^(n-k-1)*binomial(n+k-1,n-1),k,1,n-1)/n; /* Vladimir Kruchinin, Apr 01 2011 */
    
  • PARI
    a(n) = n--; prod(k=1, n, 9*k-3); \\ Michel Marcus, Feb 28 2015

Formula

a(n+1) = Sum_{k, 0<=k<=n}A132393(n,k)*6^k*9^(n-k). - Philippe Deléham, Nov 09 2008
a(n) = n!*(Sum_{k=1..n-1} binomial(k,n-k-1)*3^k*(-1)^(n-k-1)*binomial(n+k-1,n-1))/n for n>1, also a(n) = n!*A097188(n-1). - Vladimir Kruchinin, Apr 01 2011
a(n) = (-3)^n*sum_{k=0..n} 3^k*s(n+1,n+1-k), where s(n,k) are the Stirling numbers of the first kind, A048994. - Mircea Merca, May 03 2012
a(n) = round(9^n * Gamma(n+6/9) / Gamma(6/9)). - Vincenzo Librandi, Feb 21 2015
Sum_{n>=1} 1/a(n) = 1 + (e/9^3)^(1/9)*(Gamma(2/3) - Gamma(2/3, 1/9)). - Amiram Eldar, Dec 21 2022

Extensions

New name from Peter Bala, Feb 20 2015
More terms from Michel Marcus, Feb 28 2015

A088996 Triangle T(n, k) read by rows: T(n, k) = Sum_{j=0..n} binomial(j, n-k) * |Stirling1(n, n-j)|.

Original entry on oeis.org

1, 0, 1, 0, 1, 2, 0, 2, 7, 6, 0, 6, 29, 46, 24, 0, 24, 146, 329, 326, 120, 0, 120, 874, 2521, 3604, 2556, 720, 0, 720, 6084, 21244, 39271, 40564, 22212, 5040, 0, 5040, 48348, 197380, 444849, 598116, 479996, 212976, 40320
Offset: 0

Views

Author

Philippe Deléham, Dec 01 2003, Aug 17 2007

Keywords

Examples

			Triangle begins:
  1;
  0,    1;
  0,    1,     2;
  0,    2,     7,      6;
  0,    6,    29,     46,     24;
  0,   24,   146,    329,    326,    120;
  0,  120,   874,   2521,   3604,   2556,    720;
  0,  720,  6084,  21244,  39271,  40564,  22212,   5040;
  0, 5040, 48348, 197380, 444849, 598116, 479996, 212976, 40320;
  ...
		

Crossrefs

Variant: A059364, diagonals give A000007, A000142, A067318.
Cf. A001147 (row sums), A048994, A084938.

Programs

  • Magma
    A088996:= func< n,k | (&+[(-1)^j*Binomial(j,n-k)*StirlingFirst(n,n-j): j in [0..n]]) >;
    [A088996(n,k): k in [0..n], n in [0..10]]; // G. C. Greubel, Feb 23 2022
  • Maple
    A059364 := (n, k) -> add(abs(Stirling1(n, n - j))*binomial(j, n - k), j = 0..n);
    seq(seq(A059364(n, k), k = 0..n), n = 0..8);  # Peter Luschny, Aug 27 2025
  • Mathematica
    T[n_, k_]:= T[n, k]= Sum[(-1)^(n-i)*Binomial[i, k] StirlingS1[n+1, n+1-i], {i, 0, n}]; {{1}}~Join~Table[Abs@ T[n, k], {n,0,10}, {k,n+1,0,-1}] (* Michael De Vlieger, Jun 19 2018 *)
  • Sage
    def A088996(n,k): return add((-1)^(n-i)*binomial(i,k)*stirling_number1(n+1,n+1-i) for i in (0..n))
    for n in (0..10): [A088996(n,k) for k in (0..n)]  # Peter Luschny, May 12 2013
    

Formula

T(n, k) given by [0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, ...] DELTA [1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, ...] where DELTA is the operator defined in A084938. [Original name.]
Sum_{k=0..n} (-1)^k*T(n,k) = (-1)^n.
From Vladeta Jovovic, Dec 15 2004: (Start)
E.g.f.: (1-y-y*x)^(-1/(1+x)).
Sum_{k=0..n} T(n, k)*x^k = Product_{k=1..n} (k*x+k-1). (End)
T(n, k) = n*T(n-1, k-1) + (n-1)*T(n-1, k); T(0, 0) = 1, T(0, k) = 0 if k > 0, T(n, k) = 0 if k < 0. - Philippe Deléham, May 22 2005
Sum_{k=0..n} T(n,k)*x^(n-k) = A019590(n+1), A000012(n), A000142(n), A001147(n), A007559(n), A007696(n), A008548(n), A008542(n), A045754(n), A045755(n) for x = -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, respectively. Sum_{k=0..n} T(n,k)*x^k = A033999(n), A000007(n), A001147(n), A008544(n), A008545(n), A008546(n), A008543(n), A049209(n), A049210(n), A049211(n), A049212(n) for x = -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, respectively. - Philippe Deléham, Aug 10 2007
T(n, k) = Sum_{j=0..n} (-1)^j*binomial(j, n-k)*StirlingS1(n, n-j). - G. C. Greubel, Feb 23 2022

Extensions

New name using a formula of G. C. Greubel by Peter Luschny, Aug 27 2025
Showing 1-10 of 14 results. Next