OFFSET
1,1
COMMENTS
Up to 10^13 there are no consecutive numbers in the sequence.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..1000
EXAMPLE
87615 is in the sequence because 87615 = 3^3*5*11*59, 87616 = 2^6*37^2 and (3+5+11+59)/4 = (2+37)/2.
MATHEMATICA
avep[n_] := Mean[First /@ FactorInteger[n]]; Select[Range[2, 10^5], avep[#] == avep[#+1] &]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Giovanni Resta, Jul 26 2013
STATUS
approved