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

A175026
Fibonacci entry points: a(n) = smallest m such that prime(A075702(n)) divides Fibonacci(m).
1
432, 127, 1426, 10488, 63221, 1328, 11136, 1291186
OFFSET
1,1
COMMENTS
In all cases, a(n) is one of divisors of (A075702(n)):
{2160,3048,27094,251712,505768,936240,2182656,2582372}/
{432,127,1426,10488,63221,1328,11136,1291186} = {5,24,19,24,8,705,196,2}.
This is used in Mathematica code for faster search.
FORMULA
a(n)=A001602(A075702(n)).
EXAMPLE
a(1)=432 because A075702(1)=2160=5*432, prime(2160)=19009, and F(432)/19009= 45104130506533126693784341438185160821786395872599778181861900641867287643757057395776.
MATHEMATICA
s={2160, 3048, 27094, 251712, 505768, 936240, 2182656, 2582372};
Do[sk=s[[k]]; dv=Divisors[sk]; i=2; While[Mod[Fibonacci[dvi=dv[[i]]], Prime[sk]]>0, i++ ]; Print[dvi], {k, 8}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 03 2009
STATUS
approved