login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

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 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A115037 A number n is included if largest prime (or 1 if no prime divides) dividing the n-th Fibonacci number is itself a Fibonacci number. 0
1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 17, 23, 29, 43, 46, 47, 58, 69, 83, 86, 129, 131, 137, 141, 166, 262, 274, 332, 359, 411, 431, 433, 449, 509, 569, 571, 718, 862, 866, 898, 1018, 1138, 1142, 1293, 1347, 1436 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A001605 is a subsequence. 2036 and 2276 are also terms. - Chai Wah Wu, May 19 2020
LINKS
EXAMPLE
The 12th Fibonacci number is 144. The largest prime dividing 144 is 3 and 3 is the 4th Fibonacci number. So 12 is in the sequence.
PROG
(PARI) isfib(n) = my(k=n^2); k+=(k+1)<<2; issquare(k) || (n>0 && issquare(k-8));
isok(n) = my(f=fibonacci(n)); (f==1) || isfib(vecmax(factor(f)[, 1])); \\ Michel Marcus, Sep 06 2019
CROSSREFS
Sequence in context: A358673 A032976 A174219 * A280536 A090563 A045745
KEYWORD
nonn,more
AUTHOR
Leroy Quet, Feb 26 2006
EXTENSIONS
More terms from Diana L. Mecum, Jun 02 2007
a(28)-a(40) from Michel Marcus, Sep 06 2019
a(41)-a(46) from Chai Wah Wu, May 19 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified December 2 16:07 EST 2023. Contains 367524 sequences. (Running on oeis4.)