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!)
A307726 Number of partitions of n into 2 prime powers (not including 1). 4
0, 0, 0, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 2, 4, 3, 4, 4, 4, 2, 4, 3, 4, 4, 4, 3, 5, 3, 6, 4, 7, 4, 7, 2, 5, 4, 6, 3, 5, 3, 5, 5, 6, 2, 7, 3, 7, 4, 6, 2, 8, 3, 7, 4, 6, 2, 7, 3, 6, 4, 7, 2, 9, 2, 7, 5, 7, 2, 9, 3, 7, 6, 7, 3, 9, 2, 8, 4, 6, 4, 10, 3, 9, 4, 7, 3, 11, 4, 8, 3, 7, 2, 10, 2, 8, 3, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
a(n) = [x^n y^2] Product_{k>=1} 1/(1 - y*x^A246655(k)).
EXAMPLE
a(10) = 3 because we have [8, 2], [7, 3] and [5, 5].
MAPLE
# note that this requires A246655 to be pre-computed
f:= proc(n, k, pmax) option remember;
local t, p, j;
if n = 0 then return `if`(k=0, 1, 0) fi;
if k = 0 then return 0 fi;
if n > k*pmax then return 0 fi;
t:= 0:
for p in A246655 do
if p > pmax then return t fi;
t:= t + add(procname(n-j*p, k-j, min(p-1, n-j*p)), j=1..min(k, floor(n/p)))
od;
t
end proc:
map(f, [$0..100]); # Robert Israel, Apr 29 2019
MATHEMATICA
Array[Count[IntegerPartitions[#, {2}], _?(AllTrue[#, PrimePowerQ] &)] &, 101, 0]
CROSSREFS
Sequence in context: A076634 A083277 A274011 * A235123 A242768 A365742
KEYWORD
nonn,look
AUTHOR
Ilya Gutkovskiy, Apr 24 2019
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 September 27 00:54 EDT 2023. Contains 365669 sequences. (Running on oeis4.)