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.

A367469 a(n) is the total number of movable letters in all members of the partitions of [n].

Original entry on oeis.org

0, 1, 6, 29, 140, 704, 3732, 20915, 123832, 773051, 5076174, 34973432, 252212600, 1899483793, 14908277490, 121701247649, 1031472019760, 9061405440156, 82384690078948, 774102548613907, 7507335441107420, 75055820357153647, 772694054961218802, 8182814265240466788
Offset: 1

Views

Author

Stefano Spezia, Nov 19 2023

Keywords

Crossrefs

Cf. A000110.
Row sums of A367468.

Programs

  • Mathematica
    a[n_]:=(2n-1)BellB[n]/2-BellB[n+1]/2+BellB[n-1]/2; Array[a,24]

Formula

a(n) = (2*n - 1)*B(n)/2 - B(n+1)/2 + B(n-1)/2, where B(n) = A000110(n).