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.

A320380 Number of parts in all partitions of n with largest multiplicity ten.

Original entry on oeis.org

10, 0, 11, 11, 23, 23, 48, 48, 87, 100, 164, 192, 290, 344, 500, 614, 847, 1038, 1412, 1728, 2286, 2812, 3650, 4491, 5758, 7045, 8924, 10912, 13668, 16647, 20691, 25104, 30952, 37444, 45853, 55282, 67291, 80824, 97860, 117188, 141132, 168446, 202003, 240312
Offset: 10

Views

Author

Alois P. Heinz, Oct 11 2018

Keywords

Crossrefs

Column k=10 of A213177.

Programs

  • Maple
    b:= proc(n, i, k) option remember; `if`(n=0, [1, 0], `if`(i<1, 0,
          add((l->l+[0, l[1]*j])(b(n-i*j, i-1, k)), j=0..min(n/i, k))))
        end:
    a:= n-> (k-> (b(n$2, k)-b(n$2, k-1))[2])(10):
    seq(a(n), n=10..50);

Formula

a(n) ~ 3^(1/4) * log(11) * exp(2*Pi*sqrt(5*n/33)) / (2 * Pi * 55^(1/4) * n^(1/4)). - Vaclav Kotesovec, Oct 25 2018