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.

A336306 a(n) = (n!)^n * [x^n] Product_{n>=1} (1 + x^k/k^n).

Original entry on oeis.org

1, 1, 1, 35, 5392, 35462624, 15419509448256, 445352317449860352384, 1733058447330128629281872412672, 1124641798042952855847954946807366969982976, 155064212713307814902013200520441969883490549760000000000
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 17 2020

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i, k) option remember; `if`(i*(i+1)/2 b(n$3):
    seq(a(n), n=0..12);  # Alois P. Heinz, Jul 27 2023
  • Mathematica
    Table[(n!)^n SeriesCoefficient[Product[(1 + x^k/k^n), {k, 1, n}], {x, 0, n}], {n, 0, 10}]