OFFSET
1,1
COMMENTS
If k is a term then so is b*k for any odd b.
LINKS
Robin Visser, Table of n, a(n) for n = 1..10000
EXAMPLE
4 is in the sequence as any Fibonacci number divisible by 4 is divisible by 2*4.
PROG
(Python)
def is_A367420(k):
a, b = 1, 1
while((a, b)!=(0, 1)):
if (a==k): return False
a, b = b, (a+b)%(2*k)
return True
print([k for k in range(1, 1000) if is_A367420(k)]) # Robin Visser, Jan 08 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
J. Lowell, Nov 17 2023
EXTENSIONS
More terms from David A. Corneth, Nov 17 2023
STATUS
approved