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.

A248519 Number of partitions of n into distinct parts > 0 without 1 as digit, cf. A052383.

Original entry on oeis.org

1, 0, 1, 1, 1, 2, 2, 3, 3, 5, 4, 6, 6, 7, 8, 9, 9, 10, 11, 10, 13, 11, 14, 13, 15, 15, 17, 19, 20, 25, 26, 31, 35, 41, 46, 55, 60, 70, 78, 87, 97, 106, 119, 127, 141, 150, 162, 175, 186, 201, 214, 229, 247, 264, 285, 308, 333, 363, 394, 431, 470, 513, 565
Offset: 0

Views

Author

Reinhard Zumkeller, Oct 07 2014

Keywords

Examples

			a(10) = #{8+2, 7+3, 6+4, 5+3+2} = 4;
a(11) = #{9+2, 8+3, 7+4, 6+5, 6+3+2, 5+4+2} = 6;
a(12) = #{9+3, 8+4, 7+5, 7+3+2, 6+4+2, 5+4+3} = 6.
		

Crossrefs

Programs

  • Haskell
    a248519 = p $ tail a052383_list where
       p _      0 = 1
       p (k:ks) m = if m < k then 0 else p ks (m - k) + p ks m