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
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).
-
[ -&*[ (7*k-1): k in [0..n-1] ]: n in [1..15] ]; // Klaus Brockhaus, Nov 10 2008
-
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 *)
-
m=7; [m^n*rising_factorial((m-1)/m, n) for n in (0..30)] # G. C. Greubel, Feb 16 2022
A034834
One seventh of sept-factorial numbers.
Original entry on oeis.org
1, 14, 294, 8232, 288120, 12101040, 592950960, 33205253760, 2091930986880, 146435169081600, 11275508019283200, 947142673619788800, 86189983299400780800, 8446618363341276518400, 886894928150834034432000, 99332231952893411856384000, 11820535602394316010909696000
Offset: 1
-
[7^(n-1)*Factorial(n): n in [1..30]]; // G. C. Greubel, Feb 22 2018
-
Table[7^(n-1)*n!, {n,1,30}] (* or *) Drop[With[{nn = 50},CoefficientList[ Series[x/(1-7*x), {x, 0, nn}], x]*Range[0, nn]!], 1] (* G. C. Greubel, Feb 22 2018 *)
-
my(x='x+O('x^30)); Vec(serlaplace(x/(1-7*x))) \\ G. C. Greubel, Feb 22 2018
A034835
Expansion of 1/(1-49*x)^(1/7); related to sept-factorial numbers A045754.
Original entry on oeis.org
1, 7, 196, 6860, 264110, 10722866, 450360372, 19365495996, 847240449825, 37560993275575, 1682732498745760, 76028913806967520, 3459315578217022160, 158330213003009860400, 7283189798138453578400, 336483368673996555322080, 15604416222256590253061460, 726064307753233111186565580
Offset: 0
-
Q:=Rationals(); R:=PowerSeriesRing(Q, 40); Coefficients(R!(1/(1 - 49*x)^(1/7))); // G. C. Greubel, Feb 22 2018
-
CoefficientList[Series[1/(1 - 49*x)^(1/7), {x,0,50}], x] (* G. C. Greubel, Feb 22 2018 *)
-
my(x='x+O('x^30)); Vec(1/(1 - 49*x)^(1/7)) \\ G. C. Greubel, Feb 22 2018
A034829
a(n) = n-th sept-factorial number divided by 2.
Original entry on oeis.org
1, 9, 144, 3312, 99360, 3676320, 161758080, 8249662080, 478480400640, 31101226041600, 2239288274995200, 176903773724620800, 15213724540317388800, 1414876382249517158400, 141487638224951715840000, 15139177290069833594880000, 1725866211067961029816320000
Offset: 1
-
Drop[With[{nn = 50}, CoefficientList[Series[(-1 + (1 - 7*x)^(-2/7))/2, {x, 0, nn}], x]*Range[0, nn]!], 1] (* G. C. Greubel, Feb 23 2018 *)
-
vector(20, n, prod(j=1, n, 7*j-5)/2) \\ Michel Marcus, Jan 07 2015
A034830
a(n) = n-th sept-factorial number divided by 3.
Original entry on oeis.org
1, 10, 170, 4080, 126480, 4806240, 216280800, 11246601600, 663549494400, 43794266630400, 3196981464019200, 255758517121536000, 22250990989573632000, 2091593153019921408000, 211250908455012062208000, 22815098113141302718464000, 2623736283011249812623360000
Offset: 1
-
Drop[With[{nn = 40}, CoefficientList[Series[(-1 + (1 - 7*x)^(-3/7))/3, {x, 0, nn}], x]*Range[0, nn]!], 1] (* G. C. Greubel, Feb 23 2018 *)
-
my(x='x+O('x^30)); Vec(serlaplace((-1 + (1-7*x)^(-3/7))/3)) \\ G. C. Greubel, Feb 23 2018
A034832
a(n) = n-th sept-factorial number divided by 5.
Original entry on oeis.org
1, 12, 228, 5928, 195624, 7824960, 367773120, 19859748480, 1211444657280, 82378236695040, 6178367752128000, 506626155674496000, 45089727855030144000, 4328613874082893824000, 445847229030538063872000, 49043195193359187025920000, 5738053837623024882032640000
Offset: 1
-
Rest[FoldList[Times,1,7*Range[20]-2]/5] (* Harvey P. Dale, May 30 2013 *)
Drop[With[{nn = 50}, CoefficientList[Series[(-1 + (1 - 7*x)^(-5/7))/5, {x, 0, nn}], x]*Range[0, nn]!], 1] (* G. C. Greubel, Feb 22 2018 *)
-
my(x='x+O('x^30)); Vec(serlaplace((-1 + (1-7*x)^(-5/7))/5)) \\ G. C. Greubel, Feb 22 2018
A034831
a(n) = n-th sept-factorial number divided by 4.
Original entry on oeis.org
1, 11, 198, 4950, 158400, 6177600, 284169600, 15060988800, 903659328000, 60545174976000, 4480342948224000, 362907778806144000, 31935884534940672000, 3033909030819363840000, 309458721143575111680000, 33731000604649687173120000, 3912796070139363712081920000
Offset: 1
-
[(&*[(7*k-3): k in [1..n]])/4: n in [1..30]]; // G. C. Greubel, Feb 24 2018
-
Drop[With[{nn = 40}, CoefficientList[Series[(-1 + (1 - 7*x)^(-4/7))/4, {x, 0, nn}], x]*Range[0, nn]!], 1] (* G. C. Greubel, Feb 22 2018 *)
Table[Product[7 j - 3, {j, n}], {n, 30}]/4 (* Vincenzo Librandi, Feb 24 2018 *)
-
my(x='x+O('x^30)); Vec(serlaplace((-1 + (1-7*x)^(-4/7))/4)) \\ G. C. Greubel, Feb 22 2018
A025752
7th-order Patalan numbers (generalization of Catalan numbers).
Original entry on oeis.org
1, 1, 21, 637, 22295, 842751, 33429123, 1370594043, 57564949806, 2462500630590, 106872527367606, 4692675519868518, 208041948047504298, 9297874755046153626, 418404363977076913170, 18939770876029014936162, 861759574859320179595371, 39387481745040692914447251
Offset: 0
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Wolfdieter Lang, On generalizations of Stirling number triangles, J. Integer Seq., Vol. 3 (2000), Article 00.2.4.
- Elżbieta Liszewska and Wojciech Młotkowski, Some relatives of the Catalan sequence, arXiv:1907.10725 [math.CO], 2019.
- Thomas M. Richardson, The Super Patalan Numbers, J. Int. Seq. 18 (2015), Article 15.3.3; arXiv preprint, arXiv:1410.5880 [math.CO], 2014.
-
CoefficientList[Series[(8 - (1 - 49*x)^(1/7))/7, {x, 0, 20}], x] (* Vincenzo Librandi, Dec 29 2012 *)
a[n_] := 49^(n-1) * Pochhammer[6/7, n-1]/n!; a[0] = 1; Array[a, 20, 0] (* Amiram Eldar, Aug 20 2025 *)
Showing 1-8 of 8 results.