A368382 a(1) = 1; for n > 1, a(n) is the least positive integer not already in the sequence such that a(n) == a(n-1) (mod A004280(n)).
1, 3, 6, 11, 4, 13, 2, 15, 30, 47, 9, 51, 5, 55, 28, 57, 26, 59, 24, 61, 22, 63, 20, 65, 18, 67, 16, 69, 14, 71, 12, 73, 10, 75, 8, 77, 148, 221, 146, 223, 144, 225, 142, 227, 53, 231, 49, 235, 45, 239, 41, 243, 37, 247, 33, 251, 29, 255, 25, 259, 21, 263, 17, 267, 140, 269, 7, 273, 138, 275, 136, 277, 134, 279, 132, 281
Offset: 1
Keywords
Links
- N. J. A. Sloane, Table of n, a(n) for n = 1..10000
Programs
-
Python
from itertools import count, islice def A368382_gen(): # generator of terms a, aset, p = 1, {0,1}, 2 while True: yield a for b in count(a%p,p): if b not in aset: aset.add(b) a, p = b, 3 if p == 2 else p+2 break A368382_list = list(islice(A368382_gen(),40)) # Chai Wah Wu, Mar 05 2024
Comments