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

A242426 a(n) = floor(n! / n^3).

Original entry on oeis.org

1, 0, 0, 0, 0, 3, 14, 78, 497, 3628, 29990, 277200, 2834328, 31770514, 387459072, 5108103000, 72397196844, 1097800704000, 17735107218083, 304112751022080, 5516784599040000, 105559797875432727, 2124765080865042873, 44881973505008640000, 992717442773183102976
Offset: 1

Views

Author

Alex Ratushnyak, May 14 2014

Keywords

Crossrefs

Cf. A226198 (floor(n!/n^2)).

Programs

  • Python
    import math
    for i in range(1,32): print(math.factorial(i)//(i**3), end=', ')

Formula

a(n) = floor(A000142(n-1) / A000290(n)).

Extensions

Formula corrected by David Radcliffe, Aug 07 2025
Showing 1-1 of 1 results.