OFFSET
1,2
COMMENTS
The corresponding integers are 1, 2, 3, 3, 4, 2, 5, 3, 4, 4, 3, 5, 4, 7, 4, 5, 8, 6, 5, 3, 7, 2, 2, 8, 7,...
A majority of numbers of the sequence are even, except 1, 15, 315, 351, 357, 2871, 3663,...
Replacing the function lambda(n) by the Euler totient function phi(n) (A000010) gives only the short sequence {1, 2, 6} for n < 10^7.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
6 is in the sequence because the divisors of 6 are {1,2,3,6} => 1/lambda(1)+1/lambda(2)+1/lambda(3)+ 1/lambda(6) = 1/1 + 1/1 + 1/2 + 1/2 = 3 is an integer.
MATHEMATICA
lst={}; Do[If[IntegerQ[Total[1/CarmichaelLambda[Divisors[n]]]], AppendTo[lst, n]], {n, 0, 2500}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jan 28 2016
STATUS
approved