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!)
A352970 Carmichael numbers ending in 9. 5
1729, 294409, 1033669, 1082809, 1773289, 5444489, 7995169, 8719309, 17098369, 19384289, 23382529, 26921089, 37964809, 43620409, 45890209, 50201089, 69331969, 84311569, 105309289, 114910489, 146843929, 168659569, 172947529, 180115489, 188516329, 194120389, 214852609, 228842209, 230996949, 246446929, 271481329 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The first term is the Hardy-Ramanujan number.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..109 from Chai Wah Wu)
MATHEMATICA
Select[10*Range[0, 3*10^7] + 9, CompositeQ[#] && Divisible[# - 1, CarmichaelLambda[#]] &] (* Amiram Eldar, May 28 2022 *)
PROG
(Python)
from itertools import islice
from sympy import factorint, nextprime
def A352970_gen(): # generator of terms
p, q = 3, 5
while True:
for n in range(p+11-((p+2) % 10), q, 10):
f = factorint(n)
if max(f.values()) == 1 and not any((n-1) % (p-1) for p in f):
yield n
p, q = q, nextprime(q)
A352970_list = list(islice(A352970_gen(), 5)) # Chai Wah Wu, May 11 2022
CROSSREFS
Intersection of A002997 and A017377.
Subsequence of A053181.
Sequence in context: A318646 A182087 A327787 * A033502 A277366 A050794
KEYWORD
nonn,base
AUTHOR
Omar E. Pol, Apr 12 2022
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 23 12:27 EDT 2024. Contains 371912 sequences. (Running on oeis4.)