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!)
A183168 Number of partitions of n^2 into three distinct primes. 3

%I #15 May 02 2018 11:12:55

%S 0,0,0,1,2,3,8,2,17,3,41,7,61,6,69,8,152,11,216,6,204,10,383,16,464,

%T 14,447,14,791,18,978,18,822,18,1302,25,1684,27,1387,24,2347,28,2726,

%U 27,2012,34,3620,31,4005,32,3218,44,5274,44,5461,36,4538,43,7429

%N Number of partitions of n^2 into three distinct primes.

%C For n>3, odd n have (many) more partitions than even n.

%H Zak Seidov, <a href="/A183168/b183168.txt">Table of n, a(n) for n = 1..200</a>

%e a(4)=1 because 16=2+3+11,

%e a(6)=3 because 36=2+3+31=2+5+29=2+11+13.

%t Table[Count[Union/@IntegerPartitions[n^2,{3}],_?(Length[#]==3&&AllTrue[ #, PrimeQ]&)],{n,60}] (* The program uses the AllTrue function from Mathematica version 10 *) (* _Harvey P. Dale_, May 02 2018 *)

%o (PARI) a(n)=my(s);n*=n;forprime(p=n\3,n-4,forprime(q=(n-p)\2+1,min(n-p,p-1),if(isprime(n-p-q),s++)));s \\ _Charles R Greathouse IV_, Aug 27 2012

%o (Haskell)

%o a183168 n = z (drop (fromInteger (mod n 2)) a000040_list) (n ^ 2) 3 where

%o z _ m 1 = if m <= 0 then 0 else a010051 m

%o z (p:ps) m c = if m <= 2*p then 0 else z ps (m - p) (c - 1) + z ps m c

%o -- _Reinhard Zumkeller_, Aug 28 2012

%Y Subsequence of A125688: a(n) = A125688(n^2).

%Y Cf. A215933, A215934.

%Y Cf. A000040, A010051.

%K nonn

%O 1,5

%A _Zak Seidov_, Aug 27 2012

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 May 3 19:17 EDT 2024. Contains 372222 sequences. (Running on oeis4.)