A056328
Number of reversible string structures with n beads using exactly four different colors.
Original entry on oeis.org
0, 0, 0, 1, 6, 37, 183, 877, 3930, 17185, 73095, 306361, 1267266, 5198557, 21182343, 85910917, 347187210, 1399451545, 5629911015, 22616256721, 90754855026, 363890126677, 1458172596903, 5840531635357, 23385650196090
Offset: 1
For a(5)=6, the color patterns are ABCDA, ABCBD, AABCD, ABACD, ABCAD, and ABBCD. The first two are achiral. - _Robert A. Russell_, Oct 14 2018
- M. R. Nester (1999). Mathematical investigations of some plant interaction designs. PhD Thesis. University of Queensland, Brisbane, Australia. [See A056391 for pdf file of Chap. 2]
-
k=4; Table[(StirlingS2[n,k] + If[EvenQ[n], StirlingS2[n/2+2,4] - StirlingS2[n/2+1,4] - 2StirlingS2[n/2,4], 2StirlingS2[(n+3)/2,4] - 4StirlingS2[(n+1)/2,4]])/2, {n,30}] (* Robert A. Russell, Oct 14 2018 *)
Ach[n_, k_] := Ach[n, k] = If[n < 2, Boole[n == k && n >= 0], k Ach[n-2, k] + Ach[n-2, k-1] + Ach[n-2, k-2]]
k = 4; Table[(StirlingS2[n, k] + Ach[n, k])/2, {n, 1, 30}] (* Robert A. Russell, Oct 14 2018 *)
LinearRecurrence[{8, -12, -44, 121, 12, -228, 144}, {0, 0, 0, 1, 6, 37, 183}, 30] (* Robert A. Russell, Oct 14 2018 *)
A062255
4th level triangle related to Eulerian numbers and binomial transforms (A062254 is third level, A062253 is second level, triangle of Eulerian numbers is first level and triangle with Z(0,0)=1 and Z(n,k)=0 otherwise is 0th level).
Original entry on oeis.org
1, 10, 0, 65, 20, 0, 350, 350, 35, 0, 1701, 3696, 1316, 56, 0, 7770, 30660, 24570, 4200, 84, 0, 34105, 220620, 325620, 131020, 12195, 120, 0, 145750, 1447050, 3513345, 2656720, 613140, 33330, 165, 0, 611501, 8901992, 33074448, 41503484, 18444833, 2634192, 87406, 220, 0
Offset: 0
Rows start:
(1),
(10,0),
(65,20,0),
(350,350,35,0), etc.
First column is
A000453. Diagonals include
A000007 and all but the start of
A000292. Row sums are
A000454. Taking all the levels together to create a pyramid, one face would be
A010054 as a triangle with a parallel face which is Pascal's triangle (
A007318) with two columns removed, another face would be a triangle of Stirling numbers of the second kind (
A008277) and a third face would be
A000007 as a triangle, with a triangle of Eulerian numbers (
A008292),
A062253,
A062254 and
A062255 as faces parallel to it. The row sums of this last group would provide a triangle of unsigned Stirling numbers of the first kind (
A008275).
-
E(n, k) = if ((n<0) || (k<0), 0, if ((n==0) && (k==0), 1, (k+1)*E(n-1, k)+(n-k)*E(n-1, k-1)));
A2(n, k) = if ((n<0) || (k<0), 0, (k+2)*A2(n-1, k)+(n-k)*A2(n-1, k-1)+E(n, k));
A3(n, k) = if ((n<0) || (k<0), 0, (k+3)*A3(n-1, k)+(n-k)*A3(n-1, k-1) + A2(n, k));
A4(n, k) = if ((n<0) || (k<0), 0, (k+4)*A4(n-1, k)+(n-k)*A4(n-1, k-1)+ A3(n, k));
row4(n) = vector(n+1, k, A4(n,k-1)); \\ Michel Marcus, Jan 27 2025
A016094
Expansion of 1/((1-9*x)*(1-10*x)*(1-11*x)*(1-12*x)).
Original entry on oeis.org
1, 42, 1105, 23310, 431221, 7309722, 116419465, 1769717670, 25948716541, 369730963602, 5147200519825, 70298695224030, 944897655707461, 12530341519244682, 164265473257148185, 2132247784185258390
Offset: 0
-
CoefficientList[Series[1/((1-9x)(1-10x)(1-11x)(1-12x)) ,{x,0,20}],x] (* or *) LinearRecurrence[{42,-659,4578,-11880},{1,42,1105,23310},20] (* Harvey P. Dale, Dec 14 2021 *)
A016109
Expansion of 1/((1-7*x)*(1-8*x)*(1-9*x)*(1-10*x)).
Original entry on oeis.org
1, 34, 725, 12410, 186501, 2571114, 33339685, 413066170, 4941549701, 57504755594, 654463491045, 7314256515930, 80522026412101, 875355238834474, 9415203971344805, 100355146006589690
Offset: 0
-
CoefficientList[Series[1/((1-7x)(1-8x)(1-9x)(1-10x)),{x,0,20}],x] (* or *) LinearRecurrence[{34,-431,2414,-5040},{1,34,725,12410},21] (* Harvey P. Dale, Jan 26 2012 *)
A049434
Stirling numbers of second kind: 8th column of Stirling2 triangle A008277.
Original entry on oeis.org
1, 36, 750, 11880, 159027, 1899612, 20912320, 216627840, 2141764053, 20415995028, 189036065010, 1709751003480, 15170932662679, 132511015347084, 1142399079991620, 9741955019900400, 82318282158320505, 690223721118368580, 5749622251945664950
Offset: 8
-
lst={};Do[f=StirlingS2[n, 8];AppendTo[lst, f], {n, 8, 5!}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 27 2008 *)
CoefficientList[Series[1/((1 - x) (1 - 2 x) (1 - 3 x) (1 - 4 x) (1 - 5 x) (1 - 6 x) (1 - 7 x) (1 - 8 x)), {x, 0, 25}], x] (* Vladimir Joseph Stephan Orlovsky, Jun 20 2011 *)
A049435
Stirling numbers of second kind: 10th column of Stirling2 triangle A008277.
Original entry on oeis.org
1, 55, 1705, 39325, 752752, 12662650, 193754990, 2758334150, 37112163803, 477297033785, 5917584964655, 71187132291275, 835143799377954, 9593401297313460, 108254081784931500, 1203163392175387500, 13199555372846848005, 143197070509423605675
Offset: 10
- Index entries for linear recurrences with constant coefficients, signature (55,-1320,18150,-157773,902055,-3416930,8409500,-12753576,10628640,-3628800).
-
lst={};Do[f=StirlingS2[n, 10];AppendTo[lst, f], {n, 10, 5!}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 27 2008 *)
CoefficientList[Series[1/((1 - x) (1 - 2 x) (1 - 3 x) (1 - 4 x) (1 - 5 x) (1 - 6 x) (1 - 7 x) (1 - 8 x) (1 - 9 x) (1 - 10 x)), {x, 0, 25}], x] (* Vladimir Joseph Stephan Orlovsky, Jun 20 2011 *)
StirlingS2[Range[10,35],10] (* Harvey P. Dale, Nov 07 2020 *)
A049447
Stirling numbers of second kind: 9th column of Stirling2 triangle A008277.
Original entry on oeis.org
1, 45, 1155, 22275, 359502, 5135130, 67128490, 820784250, 9528822303, 106175395755, 1144614626805, 12011282644725, 123272476465204, 1241963303533920, 12320068811796900, 120622574326072500, 1167921451092973005, 11201516780955125625, 106563273280541795575
Offset: 9
-
lst={};Do[f=StirlingS2[n, 9];AppendTo[lst, f], {n, 9, 5!}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 27 2008 *)
CoefficientList[Series[1/((1 - x) (1 - 2 x) (1 - 3 x) (1 - 4 x) (1 - 5 x) (1 - 6 x) (1 - 7 x) (1 - 8 x) (1 - 9 x)), {x, 0, 25}], x] (* Vladimir Joseph Stephan Orlovsky, Jun 20 2011 *)
StirlingS2[Range[9,30],9] (* Harvey P. Dale, Dec 12 2022 *)
A320527
Number of chiral pairs of color patterns (set partitions) in a row of length n using exactly 4 colors (subsets).
Original entry on oeis.org
0, 0, 0, 0, 4, 28, 167, 824, 3840, 16920, 72655, 305140, 1265264, 5193188, 21173607, 85887984, 347150080, 1399355440, 5629755935, 22615859180, 90754215024, 363888497148, 1458169977847, 5840524999144, 23385639542720, 93613165023560, 374664497695215, 1499293455643620, 5999080285068784, 24002040333605908
Offset: 1
For a(5)=4, the chiral pairs are AABCD-ABCDD, ABACD-ABCDC, ABBCD-ABCCD and ABCAD-ABCDB.
-
k=4; Table[(StirlingS2[n,k] - If[EvenQ[n], StirlingS2[n/2+2,4] - StirlingS2[n/2+1,4] - 2StirlingS2[n/2,4], 2StirlingS2[(n+3)/2,4] - 4StirlingS2[(n+1)/2,4]])/2, {n,30}]
Ach[n_, k_] := Ach[n, k] = If[n<2, Boole[n==k && n>=0], k Ach[n-2,k] + Ach[n-2,k-1] + Ach[n-2,k-2]] (* A304972 *)
k = 4; Table[(StirlingS2[n, k] - Ach[n, k])/2, {n, 1, 30}]
LinearRecurrence[{8, -12, -44, 121, 12, -228, 144}, {0, 0, 0, 0, 4, 28, 167}, 30]
A346976
Expansion of e.g.f. log( 1 + (exp(x) - 1)^4 / 4! ).
Original entry on oeis.org
1, 10, 65, 350, 1666, 6510, 7855, -270050, -4942894, -63052990, -682650605, -6309889950, -42960995804, 348211510, 7739540496935, 202902567668150, 3863986259609686, 61527382177040010, 807717870749781475, 7066953051021894250, -33781117662453993424
Offset: 4
-
nmax = 24; CoefficientList[Series[Log[1 + (Exp[x] - 1)^4/4!], {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 4] &
a[n_] := a[n] = StirlingS2[n, 4] - (1/n) Sum[Binomial[n, k] StirlingS2[n - k, 4] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 4, 24}]
A056280
Number of primitive (aperiodic) word structures of length n which contain exactly four different symbols.
Original entry on oeis.org
0, 0, 0, 1, 10, 65, 350, 1700, 7770, 34095, 145750, 611435, 2532530, 10391395, 42355940, 171797200, 694337290, 2798799150, 11259666950, 45232081795, 181509069700, 727778478075, 2916342574750, 11681056021300, 46771289738800, 187226354413735, 749329038527580
Offset: 1
- M. R. Nester (1999). Mathematical investigations of some plant interaction designs. PhD Thesis. University of Queensland, Brisbane, Australia. [See A056391 for pdf file of Chap. 2]
Comments