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.

A274300 Arises in study of A000587.

Original entry on oeis.org

1, 1, 1, 5, 13, 13, 13, 77, 77, 333, 845, 1869, 3917, 8013, 8013, 24397, 57165, 122701, 122701
Offset: 0

Views

Author

N. J. A. Sloane, Jun 20 2016

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := a[n] = a[n-1] + If[IntegerExponent[BellB[24*a[n-1] + 14, -1], 2] > n + 4, 0, 2^(n-1)]; Array[a, 11, 0] (* Amiram Eldar, May 27 2024 *)

Formula

a(0) = 1; a(n) = a(n-1), if A007814(A000587(24*a(n-1)+14)) > n+4, and a(n-1) + 2^(n-1) otherwise. - Amiram Eldar, May 27 2024