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.

A258480 Number of partitions of n into two sorts of parts having exactly 10 parts of the second sort.

Original entry on oeis.org

1, 12, 79, 377, 1457, 4836, 14289, 38493, 96151, 225486, 501180, 1063635, 2168132, 4265393, 8130869, 15067991, 27222865, 48062380, 83093629, 140925603, 234830485, 384989926, 621737584, 990119455, 1556378360, 2416887471, 3710698393, 5636503638, 8476224739
Offset: 10

Views

Author

Alois P. Heinz, May 31 2015

Keywords

Crossrefs

Column k=10 of A256193.

Programs

  • Maple
    b:= proc(n, i) option remember; series(`if`(n=0, 1,
          `if`(i<1, 0, add(b(n-i*j, i-1)*add(x^t*
           binomial(j, t), t=0..min(10, j)), j=0..n/i))), x, 11)
        end:
    a:= n-> coeff(b(n$2), x, 10):
    seq(a(n), n=10..40);