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!)
A072243 Number of distinct partitions of n^2. 8
1, 1, 2, 8, 32, 142, 668, 3264, 16444, 84756, 444793, 2368800, 12769602, 69545358, 382075868, 2114965120, 11784471548, 66043042088, 372022512608, 2105220502772, 11962163400706, 68223286792200, 390406746862530, 2240962117491470, 12899456450932840 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..1260 (terms 0..200 from Alois P. Heinz)
FORMULA
a(n) ~ exp(Pi*n/sqrt(3)) / (4*3^(1/4)*n^(3/2)). - Vaclav Kotesovec, Dec 01 2015
a(n) = A000009(A000290(n)). - Alois P. Heinz, Jan 22 2017
MAPLE
with(numtheory):
b:= proc(n) option remember; `if`(n=0, 1, add(add(
`if`(d::odd, d, 0), d=divisors(j))*b(n-j), j=1..n)/n)
end:
a:= n-> b(n^2):
seq(a(n), n=0..30); # Alois P. Heinz, Jan 22 2017
MATHEMATICA
Table[ PartitionsQ[n^2], {n, 1, 24}]
CROSSREFS
Sequence in context: A150859 A150860 A308368 * A150861 A150862 A150863
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jul 06 2002
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Jan 22 2017
STATUS
approved

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.)