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.

A317275 a(1) = 1; a(n) = Sum_{k=1..n-1} |Stirling1(n-1,k)|*a(k)*a(n-k).

Original entry on oeis.org

1, 1, 2, 9, 97, 3105, 409318, 301069244, 1523141657289, 61447697339843710, 22299766257043761657829, 80922067241038150103930448880, 3230152742688615187688660954252643194, 1547248455508510864175770056662224501358437847
Offset: 1

Views

Author

Ilya Gutkovskiy, Jul 25 2018

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := a[n] = Sum[Abs[StirlingS1[n - 1, k]] a[k] a[n - k], {k, n - 1}]; a[1] = 1; Table[a[n], {n, 14}]