OFFSET
2,1
EXAMPLE
a(2)=20 since 2+0=2 and 20=2^2*5 has 2 distinct prime factors.
a(5)=100130 since 1+0+0+1+3+0=5 and 100130=2*5*17*19*31 has 5 distinct prime factors.
MATHEMATICA
Lk[n_] := Block[{k = 2}, While[n != Plus @@ IntegerDigits[k] || n != Length@FactorInteger@k, k++ ]; k]; L = {}; Do[v = Lk[n]; Print[{n, v}]; AppendTo[L, v], {n, 2, 5}]; L
CROSSREFS
KEYWORD
base,hard,more,nonn
AUTHOR
Giovanni Resta, Jan 18 2006
EXTENSIONS
More terms from Don Reble, Oct 26 2006
STATUS
approved