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!)
A341140 Number of partitions of n into 3 distinct prime powers (including 1). 9
1, 1, 2, 2, 3, 3, 5, 5, 7, 6, 8, 7, 8, 8, 10, 10, 12, 11, 12, 12, 13, 12, 16, 15, 15, 16, 18, 17, 19, 20, 21, 24, 22, 22, 23, 25, 22, 27, 26, 25, 26, 29, 25, 31, 27, 30, 31, 34, 26, 34, 31, 35, 32, 38, 29, 40, 32, 36, 34, 41, 29, 44, 35, 41, 36, 47, 34, 51, 38, 45, 41, 54 (list; graph; refs; listen; history; text; internal format)
OFFSET
6,3
LINKS
MAPLE
q:= proc(n) option remember; nops(ifactors(n)[2])<2 end:
b:= proc(n, i, t) option remember; `if`(n=0,
`if`(t=0, 1, 0), `if`(i<1 or t<1, 0, b(n, i-1, t)+
`if`(q(i), b(n-i, min(n-i, i-1), t-1), 0)))
end:
a:= n-> b(n$2, 3):
seq(a(n), n=6..77); # Alois P. Heinz, Feb 05 2021
MATHEMATICA
q[n_] := q[n] = PrimeNu[n] < 2;
b[n_, i_, t_] := b[n, i, t] = If[n == 0,
If[t == 0, 1, 0], If[i < 1 || t < 1, 0, b[n, i - 1, t] +
If[q[i], b[n - i, Min[n - i, i - 1], t - 1], 0]]];
a[n_] := b[n, n, 3];
Table[a[n], {n, 6, 77}] (* Jean-François Alcover, Jul 13 2021, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A179254 A304430 A086609 * A340285 A341462 A035031
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 05 2021
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 March 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)