OFFSET
1,1
COMMENTS
The sum of the distinct primes dividing 2n. - Emeric Deutsch, Mar 11 2005
EXAMPLE
a(6)=5 because 12 = 2^2*3 and 2+3 = 5.
MAPLE
with(numtheory): a:=proc(n) local b: b:=convert(factorset(2*n), list): add(b[j], j=1..nops(b)) end: seq(a(n), n=1..90); # Emeric Deutsch, Mar 11 2005
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Nov 20 2004
EXTENSIONS
More terms from Emeric Deutsch, Mar 11 2005
STATUS
approved