login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A092144
a(n) = A092143(n)/n!.
3
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,4
LINKS
MATHEMATICA
Table[Product[k^Floor[n/k], {k, n}]/n!, {n, 40}] (* G. C. Greubel, Feb 05 2024 *)
PROG
(PARI) my(z=1); for(i=1, 20, fordiv(i, j, z*=j); print1(z/i!, ", "))
(Magma) [(&*[j^Floor(n/j): j in [1..n]])/Factorial(n): n in [1..40]]; // G. C. Greubel, Feb 05 2024
(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
CROSSREFS
Cf. A092143.
Sequence in context: A334958 A205957 A341432 * A224497 A305753 A181813
KEYWORD
nonn
AUTHOR
Jon Perry, Mar 31 2004
EXTENSIONS
Terms a(21) onward added by G. C. Greubel, Feb 05 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 22 11:40 EDT 2024. Contains 376114 sequences. (Running on oeis4.)