OFFSET
1,1
COMMENTS
All primes are a solution to this equation. For composite numbers, a(8) > 10^7.
No more terms below 4.8*10^10. - Amiram Eldar, Oct 18 2019
MATHEMATICA
dn[0]=0; dn[1]=0; dn[n_] := Module[{f=Transpose[FactorInteger[n]]}, If[PrimeQ[n], 1, Plus@@(n*f[[2]]/f[[1]])]]; Select[Range[2, 100000], !PrimeQ[#] && dn[#] == dn[dn[#]+1]&]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
José María Grau Ribas, Jan 24 2012
EXTENSIONS
a(8)-a(13) from Amiram Eldar, Oct 18 2019
STATUS
approved