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.

A005462 Number of simplices in barycentric subdivision of n-simplex.

Original entry on oeis.org

1, 31, 602, 10206, 166824, 2739240, 46070640, 801496080, 14495120640, 273158645760, 5368729766400, 110055327782400, 2351983118284800, 52361635508582400, 1213240925049753600, 29227769646147072000, 731310069474496512000, 18984684514588176384000
Offset: 3

Views

Author

Keywords

References

  • R. Austin, R. K. Guy, and R. Nowakowski, unpublished notes, circa 1987.
  • R. K. Guy, personal communication.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Magma
    [Factorial(n-3)*StirlingSecond(n+2,n-2): n in [3..30]]; // G. C. Greubel, Nov 22 2022
    
  • Mathematica
    Table[(n-3)!*StirlingS2[n+2,n-2], {n,3,30}] (* G. C. Greubel, Nov 22 2022 *)
  • SageMath
    [factorial(n-3)*stirling_number2(n+2,n-2) for n in range(3,31)] # G. C. Greubel, Nov 22 2022

Formula

Essentially Stirling numbers of second kind - see A028246.
a(n) = Stirling2(n+2,n-2)*(n-3)!. - Alois P. Heinz, Aug 28 2022