A132057 A convolution triangle of numbers obtained from A034904.
1, 28, 1, 980, 56, 1, 37730, 2744, 84, 1, 1531838, 130340, 5292, 112, 1, 64337196, 6136956, 299782, 8624, 140, 1, 2766499428, 288408120, 16120314, 568008, 12740, 168, 1, 121034349975, 13561837212, 841627332, 34401528, 956970, 17640, 196, 1
Offset: 1
Examples
{1}; {28,1}; {980,56,1}; (37730,2744,84,1);...
Links
- W. Lang, On generalizations of Stirling number triangles, J. Integer Seqs., Vol. 3 (2000), #00.2.4.
- W. Lang, First 10 rows.
Programs
-
Mathematica
a[n_, m_] := a[n, m] = 7*(7*(n-1) + m)*a[n-1, m]/n + m*a[n-1, m-1]/n; a[n_, m_] /; n < m = 0; a[_, 0] = 0; a[1, 1] = 1; Flatten[Table[a[n, m], {n, 1, 8}, {m, 1, n}]][[1 ;; 36]] (* Jean-François Alcover, Jun 17 2011 *)
Formula
a(n, m) = 7*(7*(n-1)+m)*a(n-1, m)/n + m*a(n-1, m-1)/n, n >= m >= 1; a(n, m) := 0, n
G.f. for m-th column: ((-1+(1-49*x)^(-1/7))/7)^m.
A034996 Related to octo-factorial numbers A045755.
1, 36, 1632, 81600, 4308480, 235530240, 13189693440, 751812526080, 43438057062400, 2536782532444160, 149439552820346880, 8866746800673914880, 529276578255612149760, 31756594695336728985600, 1913864106972293533532160, 115788778471823758778695680, 7029059963701301121153761280
Offset: 1
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..555
- Elżbieta Liszewska and Wojciech Młotkowski, Some relatives of the Catalan sequence, arXiv:1907.10725 [math.CO], 2019.
- Index entries for sequences related to factorial numbers.
Programs
-
Mathematica
Rest@ CoefficientList[Series[(-1 + (1 - 64*x)^(-1/8))/8, {x, 0, 14}], x] (* Michael De Vlieger, Oct 13 2019 *)
Formula
G.f.: (-1+(1-64*x)^(-1/8))/8.
D-finite with recurrence: n*a(n) + 8*(-8*n+7)*a(n-1) = 0. - R. J. Mathar, Jan 28 2020
a(n) ~ 8^(2*n-1) * n^(-7/8) / Gamma(1/8). - Amiram Eldar, Aug 18 2025
Comments