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.

A354278 Product_{n>=1} 1 / (1 - a(n)*x^n/n!) = exp(-x) / (1 - x).

Original entry on oeis.org

0, 1, 2, 3, 24, 50, 720, 4095, 35840, 267624, 3628800, 35724150, 479001600, 5240149200, 82614884352, 1188272460375, 20922789888000, 320893244672000, 6402373705728000, 113803149223980216, 2379913632645120000, 46396417566975840000, 1124000727777607680000
Offset: 1

Views

Author

Ilya Gutkovskiy, May 22 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[1] = 0; a[n_] := a[n] = (n - 1)! (1 - Sum[d (a[d]/d!)^(n/d), {d, Divisors[n]~Complement~{1, n}}]); Table[a[n], {n, 1, 23}]

Formula

a(1) = 0; a(n) = (n-1)! * (1 - Sum_{d|n, 1 < d < n} d * (a(d)/d!)^(n/d)).
Showing 1-1 of 1 results.