login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A094162
Where n first appears in A093320.
1
1, 6, 26, 78, 390, 2262, 7878, 30966, 154830, 890214, 3127566
OFFSET
1,2
MATHEMATICA
PrimeFactors[n_Integer] := Flatten[ Table[ # [[1]], {1}] & /@ FactorInteger[n]]; a[1] = 1; a[n_] := a[n] = (Plus @@ (a[ # ] & /@ PrimePi[ PrimeFactors[n]])); b = Table[0, {12}]; Do[c = a[n]; If[ b[[c]] == 0, b[[c]] = n]], {n, 11500000}]
CROSSREFS
Cf. A093320.
Sequence in context: A255870 A286188 A335648 * A229572 A316160 A224035
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, May 04 2004
STATUS
approved