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!)
A081326 Number of partitions of n into two 3-smooth numbers. 8
0, 1, 1, 2, 2, 2, 2, 2, 2, 3, 2, 3, 2, 2, 2, 2, 2, 3, 2, 3, 2, 2, 0, 3, 2, 2, 2, 3, 1, 3, 1, 2, 3, 2, 2, 4, 1, 2, 2, 3, 1, 2, 1, 2, 2, 0, 0, 3, 1, 2, 2, 2, 0, 3, 1, 3, 2, 1, 1, 3, 0, 1, 2, 2, 1, 3, 1, 2, 0, 2, 0, 4, 2, 1, 2, 2, 0, 2, 0, 3, 2, 2, 1, 3, 1, 1, 1, 2, 1, 3, 1, 0, 1, 0, 0, 3, 2, 1, 3, 2, 0, 2, 0, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
Jean-François Alcover, Table of n, a(n) for n = 1..10000
Ivars Peterson, Medieval Harmony.
Eric Weisstein's World of Mathematics, Smooth Number.
EXAMPLE
n=10 has a(10)=3 partitions into 3-smooth numbers: 10=1+3^2=2+2^3=2^2+2*3; n=9 has a(9)=2 partitions into 3-smooth numbers: 9=1+2^3=3+2*3.
MATHEMATICA
nmax = 10000;
S = Select[Range[nmax], Max[FactorInteger[#][[All, 1]]] <= 3 &];
P[n_] := IntegerPartitions[n, {2}, TakeWhile[S, # < n &] ];
a[n_] := P[n] // Length;
Array[a, nmax] (* Jean-François Alcover, Oct 13 2021 *)
CROSSREFS
Sequence in context: A122921 A174273 A108128 * A277879 A257071 A332025
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 19 2003
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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)