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.

A192571 a(n) = sum(floor(sqrt(Bell(k))),k=0..n).

Original entry on oeis.org

1, 2, 3, 5, 8, 15, 29, 58, 122, 267, 607, 1430, 3482, 8739, 22555, 59743, 162115, 449977, 1275856, 3690963, 10882913, 32674420, 99806496, 309930282, 977731801, 3131470488, 10176415237, 33537002728, 112026106459
Offset: 0

Views

Author

Emanuele Munarini, Jul 04 2011

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Floor[Sqrt[BellB[k]]],{k,0,n}],{n,0,100}]
    Accumulate[Floor[Sqrt[BellB[Range[0,30]]]]] (* Harvey P. Dale, May 03 2024 *)
  • Maxima
    makelist(sum(floor(sqrt(belln(k))),k,0,n),n,0,28);