The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A227975 Numbers m such that m divides Sum_{k=1..m} lambda(k). 0
1, 2, 5, 6, 10, 18, 30, 82, 4866, 8784, 10170, 23364, 76296, 247166, 585570, 735480, 848754, 1559520, 2884840, 11272940, 35642420, 56652788, 174935486, 196398413, 679063441, 1398826844, 1542228164, 1665703953, 2699813692, 5734751503 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
lambda(n) is the Carmichael lambda function (A002322). The corresponding ratios (Sum_{k=1..m} lambda(k))/m are given by the sequence {1, 1, 2, 2, 3, 5, 8, 19, 711, 1221, 1399, 3011, 9034, 27187, 61246, 75971, 86971, 154710, 277344, 1015576,...}.
a(31) > 10^10. - Dana Jacobsen, Jul 07 2016
LINKS
EXAMPLE
5 is in the sequence because 5 divides Sum_{k=1..5} lambda(k) = 1 + 1 + 2 + 2 + 4 = 2*5.
MATHEMATICA
s = 0; Do[s = s + CarmichaelLambda[n]; If[IntegerQ[s/n], Print[n]], {n, 1, 10^9}]
PROG
(Perl) use ntheory ":all"; my $v=0; for my $m (1..1e6) { $v=vecsum($v, carmichael_lambda($m)); say $m unless $v % $m; } # Dana Jacobsen, Jul 07 2016
CROSSREFS
Sequence in context: A355942 A178761 A274037 * A123645 A057252 A057250
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jun 17 2016
EXTENSIONS
More terms from Dana Jacobsen, Jul 07 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 1 20:07 EDT 2024. Contains 373028 sequences. (Running on oeis4.)