login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A347314
Fixed points of A347113.
1
1, 24, 66, 70, 88, 156, 180, 476, 480, 484, 1292, 3182, 3440, 3444, 3604, 5724, 6486, 7470, 8466, 12426
OFFSET
1,2
COMMENTS
If it exists, a(21) > 400000. - Hugo Pfoertner, Sep 07 2021
a(21) > 3*10^6 if it exists. - Chai Wah Wu, Nov 24 2021
PROG
(Python)
from math import gcd
A347314_list, nset, m, c, j, i = [1], {1}, 2, 0, 2, 1
for _ in range(10**4):
i += 1
k = m
while k == j or gcd(k, j) == 1 or k in nset:
k += 1
if i == k:
A347314_list.append(i)
j = k + 1
nset.add(k)
while m in nset:
m += 1 # Chai Wah Wu, Sep 07 2021
CROSSREFS
Cf. A347113.
Sequence in context: A118609 A127878 A205823 * A175153 A250799 A250791
KEYWORD
nonn,more
AUTHOR
N. J. A. Sloane, Sep 07 2021
EXTENSIONS
a(20) from Hugo Pfoertner, Sep 07 2021
STATUS
approved