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

A193733
Start of n consecutive indices k such that Fibonacci(k) contains distinct number of divisors.
1
1, 2, 10, 12, 20, 20, 54, 96, 132, 171, 222, 458, 520, 731, 1083
OFFSET
1,2
COMMENTS
a(16) > 1443, if it exists. - Chai Wah Wu, Jan 19 2020
EXAMPLE
The 4th number of this sequence, 12, means that:
Fibonacci(12) = 144 = 2 ^ 4 * 3 ^ 2,
Fibonacci(13) = 233 (prime number),
Fibonacci(14) = 377 = 13 * 29,
Fibonacci(15) = 610 = 2 * 5 * 61,
and these Fibonacci numbers have distinct number of divisors: 15, 2, 4 and 8, respectively.
MAPLE
with(combinat, fibonacci):with(numtheory): for n from 1 to 10 do: i:=0:for k from 1 to 1500 while(i=0) do: lst:={}:for p from 0 to n-1 do :x:= fibonacci(k+p):y:=divisors(x):n1:=nops(y):lst:= lst union {n1}:od:if nops(lst)=n then printf(`%d, `, k): i:=1:else fi:od:od:
CROSSREFS
Sequence in context: A374182 A374181 A178504 * A167503 A130842 A061818
KEYWORD
nonn,hard,more
AUTHOR
Michel Lagneau, Aug 08 2011
EXTENSIONS
a(12)-a(15) from Amiram Eldar, Oct 18 2019
STATUS
approved