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

A091746 Generalized Stirling2 array (6,2).

Original entry on oeis.org

1, 30, 12, 1, 2700, 1920, 426, 36, 1, 491400, 478800, 162540, 25344, 1956, 72, 1, 150368400, 181440000, 80451000, 17624880, 2130660, 147840, 5820, 120, 1, 69470200800, 98424849600, 52905560400, 14618016000, 2346624000, 232202880
Offset: 1

Views

Author

Wolfdieter Lang, Feb 27 2004

Keywords

Comments

The sequence of row lengths for this array is [1,3,5,7,9,11,...]=A005408(n-1), n>=1.

References

  • P. Blasiak, K. A. Penson and A. I. Solomon, The general boson normal ordering problem, Phys. Lett. A 309 (2003) 198-205.
  • M. Schork, On the combinatorics of normal ordering bosonic operators and deforming it, J. Phys. A 36 (2003) 4651-4665.

Crossrefs

Cf. A078740 (3, 2)-Stirling2, A090438 (4, 2)-Stirling2, A091534 (5, 2)-Stirling2.
Cf. A091544 (first column), A091550 (second column divided by 12).
Cf. A091748 (row sums), A091750 (alternating row sums).

Programs

  • Mathematica
    a[n_, k_] := (-1)^k/k! Sum[(-1)^p Binomial[k, p] Product[FactorialPower[p + 4*(j-1), 2], {j, 1, n}], {p, 2, k}]; Table[a[n, k], {n, 1, 8}, {k, 2, 2n} ] // Flatten (* Jean-François Alcover, Sep 01 2016 *)

Formula

a(n, k)=(((-1)^k)/k!)*sum(((-1)^p)*binomial(k, p)*product(fallfac(p+4*(j-1), 2), j=1..n), p=2..k), n>=1, 2<=k<=2*n, else 0. From eq. (12) of the Blasiak et al. reference with r=6, s=2.
Recursion: a(n, k)=sum(binomial(2, p)*fallfac(4*(n-1)+k-p, 2-p)*a(n-1, k-p), p=0..2), n>=2, 2<=k<=2*n, a(1, 2)=1, else 0. Rewritten from eq.(19) of the Schork reference with r=6, s=2. fallfac(n, m) := A008279(n, m) (falling factorials triangle).

A091749 Generalized Bell numbers B_{7,2}.

Original entry on oeis.org

1, 57, 9367, 3039037, 1631142633, 1306299636853, 1458563053824871, 2164056543968020185, 4116264432907357578961, 9762542731516508922640177, 28237035023990471230544779095, 97815632146487780258222172635029
Offset: 1

Views

Author

Wolfdieter Lang, Feb 27 2004

Keywords

References

  • P. Blasiak, K. A. Penson and A. I. Solomon, The general boson normal ordering problem, Phys. Lett. A 309 (2003) 198-205.
  • M. Schork, On the combinatorics of normal ordering bosonic operators and deforming it, J. Phys. A 36 (2003) 4651-4665.

Crossrefs

Cf. A091748 (B_{6, 2}).

Programs

  • Mathematica
    a[n_] := Sum[Product[FactorialPower[k+5*(j-1), 2], {j, 1, n}]/k!, {k, 2, Infinity}]/E; Array[a, 12] (* Jean-François Alcover, Sep 01 2016 *)

Formula

a(n)=sum(A091747(n, k), k=2..2*n)= sum((1/k!)*product(fallfac(k+5*(j-1), 2), j=1..n), k=2..infinity)/exp(1), n>=1. From eq.(9) of the Blasiak et al. reference with r=7, s=2. fallfac(n, m) := A008279(n, m) (falling factorials triangle). a(0) := 1 may be added.

A091750 Alternating row sums of array A091746 (generalized Stirling2 array (6,2)).

Original entry on oeis.org

1, 19, 1171, 151681, 33743041, 11461272931, 5499378001699, 3524209981309921, 2887597622445729121, 2916075074262560119891, 3507033649107862877516371, 4836904652902464306386484769, 7251193844710136332044143616481
Offset: 1

Views

Author

Wolfdieter Lang, Feb 27 2004

Keywords

Comments

The first negative term is the 41 digit number a(16)=-42686874251433290891296448926053802610879.

Crossrefs

Cf. A091748 (row sums of A091746).

Formula

a(n)=sum(A091746(n, k)*(-1)^k, k=2..2*n), n>=1.
Showing 1-3 of 3 results.