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.

A091546 First column of the array A092077 ((8,2)-Stirling2).

Original entry on oeis.org

1, 56, 10192, 3872960, 2517424000, 2497284608000, 3511182158848000, 6643156644540416000, 16275733779124019200000, 50129260039701979136000000, 189588861470152885092352000000, 863766852858016544480755712000000, 4666068539139005373285042356224000000, 29489553167358513959161467691335680000000
Offset: 1

Views

Author

Wolfdieter Lang, Feb 13 2004

Keywords

Comments

Also seventh column (m=6) of triangle A091543.

Crossrefs

Programs

  • Mathematica
    a[n_] := 6^(2*n) * Pochhammer[1/6, n] * Pochhammer[1/3, n] / 2; Array[a, 20] (* Amiram Eldar, Aug 30 2025 *)

Formula

a(n) = (2^(n-1))*Product_{j=0..n-1} ((3*j+1)*(6*j+1)), n>=1. From eq.12 of the Blasiak et al. reference with r=8, s=2, k=1.
a(n) = (6^(2*n))*risefac(1/6, n)*risefac(1/3, n)/2, n>=1, with risefac(x, n) = Pochhammer(x, n).
a(n) = fac6(6*n-5)*fac6(6*n-4)/2, n>=1, with fac6(6*n-5) = A008542(n) and fac6(6*n-4)/2 = A034689(n)= (2^(n-1))*A007559(n), (6-factorials).
a(n) ~ Pi * (6/e)^(2*n) * n^(2*n-1/2) / (Gamma(1/6) * Gamma(1/3)). - Amiram Eldar, Aug 30 2025