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!)
A255441 Carmichael numbers of the form (60k+41)*(90k+61)*(150k+101), where 60k+41, 90k+61 and 150k+101 are all primes. 2
252601, 3828001, 82929001, 366652201, 8251854001, 12173703001, 25749237001, 67495942201, 82380774001, 285983187601, 802204143001, 1039708768201, 1068674250001, 1158788350201, 2997587784001, 3236207713201, 4467180843001, 7902515425201, 8470346587201 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Umberto Cerruti, Pseudoprimi di Fermat e numeri di Carmichael (in Italian), p. 10.
MATHEMATICA
f[k_] := {60*k + 41, 90*k + 61, 150*k + 101}; Times @@ f[#]& /@ Select[Range[0, 500], And @@ PrimeQ[f[#]] &] (* Amiram Eldar, Apr 24 2024 *)
PROG
(Magma) [(60*n+41)*(90*n+61)*(150*n+101): n in [0..300]| IsPrime(60*n+41) and IsPrime(90*n+61) and IsPrime(150*n+101)];
(PARI) lista(kmax) = for(k = 0, kmax, if(isprime(60*k + 41) && isprime(90*k + 61) && isprime(150*k + 101), print1((60*k+41)*(90*k+61)*(150*k+101), ", "))); \\ Amiram Eldar, Apr 24 2024
CROSSREFS
Cf. A255512 (associated k).
Sequence in context: A083628 A212843 A270267 * A210074 A230484 A236874
KEYWORD
nonn,changed
AUTHOR
Vincenzo Librandi, Feb 24 2015
EXTENSIONS
First term added from Bruno Berselli, Feb 24 2015
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 April 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)