The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A060277 Number of m for which a+b+c = n; abc = m has at least two distinct solutions (a,b,c) with 1 <= a <= b <= c. 6
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 1, 0, 1, 1, 3, 1, 1, 1, 1, 3, 2, 7, 3, 2, 5, 4, 3, 5, 9, 2, 5, 6, 9, 5, 9, 14, 9, 7, 5, 10, 10, 11, 18, 7, 11, 16, 14, 12, 12, 23, 19, 13, 18, 11, 20, 19, 32, 17, 21, 18, 25, 19, 21, 27, 22, 21, 31, 27, 24, 28, 42, 34, 33, 21, 28, 31, 35, 47 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,14
COMMENTS
A triple (a,b,c) as described in the name cannot have c prime. - David A. Corneth, Aug 01 2018
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..10000 (first 1500 terms from Hugo Pfoertner)
John B. Kelly, Partitions with equal products, Proc. Amer. Math. Soc. 15 (1964), 987-990
John B. Kelly, Partitions with equal products. II, Proc. Amer. Math. Soc. 107 (1989), 887-893
FORMULA
a(n) = Sum_{k>=2} A317578(n,k). - Alois P. Heinz, Aug 01 2018
EXAMPLE
(14 = 6+6+2 = 8+3+3, 72 = 6*6*2 = 8*3*3); (14 = 8+5+1 = 10+2+2, 40 = 8*5*1 = 10*2*2); 14 has two "m" variables. so a(14)=2.
MATHEMATICA
a[n_] := Count[ Tally[ Times @@@ IntegerPartitions[n, {3}]], {m_, c_} /; c>1]; Array[a, 84] (* Giovanni Resta, Jul 27 2018 *)
PROG
(PARI) a(n)={my(M=Map()); for(i=n\3, n, for(j=(n-i+1)\2, min(n-1-i, i), my(k=n-i-j); my(m=i*j*k); my(z); mapput(M, m, if(mapisdefined(M, m, &z), z + 1, 1)))); #select(z->z>=2, if(#M, Mat(M)[, 2], []))} \\ Andrew Howroyd, Jul 27 2018
CROSSREFS
Sequence in context: A096863 A326815 A117210 * A333330 A290825 A204688
KEYWORD
nonn
AUTHOR
Naohiro Nomoto, Mar 23 2001
EXTENSIONS
Description revised by David W. Wilson and Don Reble, Jun 04 2002
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 June 1 15:48 EDT 2024. Contains 373025 sequences. (Running on oeis4.)