OFFSET
1,2
REFERENCES
D. H. Lehmer, Guide to Tables in the Theory of Numbers. Bulletin No. 105, National Research Council, Washington, DC, 1941, pp. 7-10.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
C. Moreau, Sur quelques théorèmes d'arithmétique, Nouvelles Annales de Mathématiques, 17 (1898), 293-307.
MATHEMATICA
max = 1000; Clear[a]; a[n_] := 100*n; a[2432] = 623104 (* given by T. D. Noe *); For[m = 0; n = 1, m <= max, n = If[n == 1, 2, n + 2], For[k = n, k <= a[n], k++, If[CarmichaelLambda[k] == n, m++; Print[{n, m, k}]; a[m] = k; Break[]]]]; Table[a[n], {n, 1, max}] (* Jean-François Alcover, Jan 15 2015 *)
CROSSREFS
KEYWORD
nonn,nice,easy
AUTHOR
EXTENSIONS
More terms from Brent Lehman (mailbjl(AT)yahoo.com), Apr 26 2005
STATUS
approved