OFFSET
1,1
COMMENTS
The function t(k,n) = A002322(n)+k provides many prime values for k=1: for n up to 1000, for example, it returns 798 primes (with repetitions). On the other hand, for n <= 1000 and odd k from 3 to 11, t(k,n) gives 247, 387, 538, 231, 504 prime values, respectively.
Another function of this type is |A002322(n)-119|, which provides 693 prime values for n <= 1000. [Bruno Berselli, Oct 14 2015]
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..5000
MATHEMATICA
Table[CarmichaelLambda[n] + 1, {n, 1, 100}]
PROG
(Magma) [2] cat [CarmichaelLambda(n)+1: n in [2..100]];
(PARI) vector(100, n, 1 + lcm(znstar(n)[2])) \\ Altug Alkan, Oct 08 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Oct 08 2015
EXTENSIONS
Edited by Bruno Berselli, Oct 14 2015
STATUS
approved