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”).

A185635
Fixed points of A075075.
3
1, 2, 8, 36, 39, 49, 370, 626, 632, 1030, 13155, 32317, 61358, 86704, 2535431, 13360009
OFFSET
1,2
COMMENTS
A075075(a(n)) = A160516(a(n)) = a(n);
A075075(a(n)-1) * A075075(a(n)+1) mod a(n) = 0.
PROG
(Haskell)
a185635 n = a185635_list !! (n-1)
a185635_list = filter (> 0) $
zipWith (\x y -> if x == y then y else 0) [1..] a075075_list
-- Reinhard Zumkeller, Dec 19 2012
(Python)
from math import gcd
A185635_list, l1, l2, m, b = [1, 2], 2, 1, 2, {1, 2}
for n in range(3, 10**4):
i = m
while True:
if not i in b:
if n == i:
A185635_list.append(i)
l1, l2, m = i, l1, i//gcd(l1, i)
b.add(i)
break
i += m # Chai Wah Wu, Dec 09 2014
CROSSREFS
Sequence in context: A007508 A122674 A203762 * A076122 A332607 A236626
KEYWORD
nonn,more
AUTHOR
Reinhard Zumkeller, Dec 19 2012
EXTENSIONS
a(15) from Chai Wah Wu, Dec 10 2014
a(16) from Chai Wah Wu, Sep 22 2019
STATUS
approved