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.

Showing 1-1 of 1 results.

A256287 Number of partitions of 7n into 7 parts.

Original entry on oeis.org

0, 1, 15, 105, 436, 1367, 3539, 8033, 16475, 31275, 55748, 94425, 153192, 239691, 363446, 536375, 772909, 1090592, 1510201, 2056462, 2758123, 3648814, 4767088, 6157387, 7870067, 9962502, 12499033, 15552247, 19202869, 23541165, 28666799, 34690401, 41733315
Offset: 0

Views

Author

Colin Barker, Mar 21 2015

Keywords

Examples

			For n=2, the 15 partitions of 14 are [1,1,1,1,1,1,8], [1,1,1,1,1,2,7], ..., [1,2,2,2,2,2,3], [2,2,2,2,2,2,2].
		

Crossrefs

Programs

  • Mathematica
    Length /@ (Total /@ IntegerPartitions[7 #, {7}] & /@ Range[0, 24]) (* Michael De Vlieger, Mar 21 2015 *)
  • PARI
    concat(0, vector(35, n, k=0; forpart(p=7*n, k++, , [7,7]); k))
Showing 1-1 of 1 results.