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.

A092144 a(n) = A092143(n)/n!.

Original entry on oeis.org

1, 1, 1, 2, 2, 12, 12, 96, 288, 2880, 2880, 414720, 414720, 5806080, 87091200, 5573836800, 5573836800, 1805923123200, 1805923123200, 722369249280000, 15169754234880000, 333734593167360000, 333734593167360000, 4613547015945584640000, 23067735079727923200000
Offset: 1

Views

Author

Jon Perry, Mar 31 2004

Keywords

Crossrefs

Cf. A092143.

Programs

  • Magma
    [(&*[j^Floor(n/j): j in [1..n]])/Factorial(n): n in [1..40]]; // G. C. Greubel, Feb 05 2024
    
  • Mathematica
    Table[Product[k^Floor[n/k], {k,n}]/n!, {n,40}] (* G. C. Greubel, Feb 05 2024 *)
  • PARI
    my(z=1); for(i=1,20, fordiv(i,j,z*=j); print1(z/i!, ", "))
    
  • SageMath
    [product(j^(n//j) for j in range(1,n+1))//factorial(n) for n in range(1,41)] # G. C. Greubel, Feb 05 2024

Extensions

Terms a(21) onward added by G. C. Greubel, Feb 05 2024