cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A255441 Carmichael numbers of the form (60k+41)*(90k+61)*(150k+101), where 60k+41, 90k+61 and 150k+101 are all primes.

Original entry on oeis.org

252601, 3828001, 82929001, 366652201, 8251854001, 12173703001, 25749237001, 67495942201, 82380774001, 285983187601, 802204143001, 1039708768201, 1068674250001, 1158788350201, 2997587784001, 3236207713201, 4467180843001, 7902515425201, 8470346587201
Offset: 1

Views

Author

Vincenzo Librandi, Feb 24 2015

Keywords

Crossrefs

Cf. A255512 (associated k).

Programs

  • 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)];
    
  • 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 *)
  • 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

Extensions

First term added from Bruno Berselli, Feb 24 2015
Showing 1-1 of 1 results.