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.

A296338 a(n) = number of partitions of n into consecutive positive squares.

Original entry on oeis.org

1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1
Offset: 1

Views

Author

Seiichi Manyama, Jan 14 2018

Keywords

Examples

			   1 = 1^2,                   so  a(1) = 1.
   4 = 2^2,                   so  a(4) = 1.
   5 = 1^2 + 2^2,             so  a(5) = 1.
   9 = 3^2,                   so  a(9) = 1.
  13 = 2^2 + 3^2,             so a(13) = 1.
  14 = 1^2 + 2^2 + 3^2,       so a(14) = 1.
  16 = 4^2,                   so a(16) = 1.
  25 = 3^2 + 4^2 = 5^2,       so a(25) = 2.
  29 = 2^2 + 3^2 + 4^2,       so a(29) = 1.
  30 = 1^2 + 2^2 + 3^2 + 4^2, so a(30) = 1.
		

Crossrefs

Programs

Formula

a(A034705(n)) >= 1 for n > 1.
G.f.: Sum_{i>=1} Sum_{j>=i} Product_{k=i..j} x^(k^2). - Ilya Gutkovskiy, Apr 18 2019