login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A030273 Number of partitions of n^2 into distinct squares. 15

%I #31 Apr 14 2017 03:33:38

%S 1,1,1,1,1,2,1,2,1,3,3,4,2,7,8,12,13,16,25,28,55,51,91,90,158,176,288,

%T 297,487,521,847,908,1355,1580,2175,2744,3636,4452,5678,7385,9398,

%U 11966,14508,19322,23065,31301,36177,49080,57348,77446,91021,121113,141805

%N Number of partitions of n^2 into distinct squares.

%H Alois P. Heinz and Vaclav Kotesovec, <a href="/A030273/b030273.txt">Table of n, a(n) for n = 0..1000</a> (terms 0..750 from Alois P. Heinz)

%F a(n) = [x^(n^2)] Product_{k>=1} (1 + x^(k^2)). - _Ilya Gutkovskiy_, Apr 13 2017

%p b:= proc(n, i) option remember; `if`(n=0, 1,

%p `if`(n>i*(i+1)*(2*i+1)/6, 0, b(n, i-1)+

%p `if`(i^2>n, 0, b(n-i^2, i-1))))

%p end:

%p a:= n-> b(n^2, n):

%p seq(a(n), n=0..50); # _Alois P. Heinz_, Nov 20 2012

%t b[n_, i_] := b[n, i] = If[n==0, 1, If[n > i*(i+1)*(2*i+1)/6, 0, b[n, i-1] +If[i^2 > n, 0, b[n-i^2, i-1]]]]; a[n_] := b[n^2, n]; Table[a[n], {n, 0, 50}] (* _Jean-François Alcover_, Jul 30 2015, after _Alois P. Heinz_ *)

%o (Haskell)

%o a030273 n = p (map (^ 2) [1..]) (n^2) where

%o p _ 0 = 1

%o p (k:ks) m | m < k = 0

%o | otherwise = p ks (m - k) + p ks m

%o -- _Reinhard Zumkeller_, Aug 14 2011

%Y Cf. A037444, A033461, A000009, A000290.

%K nonn

%O 0,6

%A _Warren D. Smith_

%E a(0)=1 prepended by _Alois P. Heinz_, Feb 18 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)