OFFSET
1,1
COMMENTS
The first few terms have a+b+c+d = w+x+y+z equal to 14, 15, 12, 15, 16, 17, 15, ..., . - Robert G. Wilson v, Feb 09 2015
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 1..1114 (first 157 terms from Carmine Suriano)
EXAMPLE
40 is in the list since 40 = 1*1*5*8 = 1*2*2*10 and 1+1+5+8 = 15 = 1+2+2+10.
MATHEMATICA
fQ[n_] := If[ PrimeOmega@ n > 3, Block[{k = 1}, While[k < n && Length@ Select[ IntegerPartitions[k, {4}, Divisors@ n], Times @@ # == n &] < 2, k++]; If[k < 2n, True]]]; k = 1; lst = {}; While[k < 500, If[ fQ@ k, AppendTo[lst, k]]; k++]; lst (* Robert G. Wilson v, Feb 09 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Carmine Suriano, Feb 08 2015
STATUS
approved