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

A037917
Numbers n such that the Fibonacci number F(n) is divisible by a square.
9
6, 12, 18, 24, 25, 30, 36, 42, 48, 50, 54, 56, 60, 66, 72, 75, 78, 84, 90, 91, 96, 100, 102, 108, 110, 112, 114, 120, 125, 126, 132, 138, 144, 150, 153, 156, 162, 168, 174, 175, 180, 182, 186, 192, 198, 200, 204, 210, 216, 220, 222, 224, 225, 228, 234, 240
OFFSET
1,1
COMMENTS
Is a(n) asymptotic to C*n with 4 < C < 4.5 ? - Benoit Cloitre, Sep 04 2002
Numbers are a superset of the multiples of 6 (A008588), because 8 divides Fibonacci(6m) = A134492(m). Sequence apparently also contains the multiples of 25. Are all a(n) composite? Members not divisible by 6 or 25 are 56, 91, 110, 112, 153, 182, 220, 224, 273, 280, ... - Ralf Stephan, Jan 26 2014
These numbers are the positive multiples of A065069. - Charles R Greathouse IV, Feb 02 2014
To address Cloitre's question, if such C exists it must be less than 4.3 using the known terms of A065069. - Charles R Greathouse IV, Feb 04 2014
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..328 (terms 1..235 from T. D. Noe, based on Kelly's table)
Eric Weisstein's World of Mathematics, Fibonacci Number.
MATHEMATICA
Select[Range[100], MoebiusMu[Fibonacci[#]] == 0 &] (* Alonso del Arte, Jan 26 2014 *)
PROG
(PARI) is(n)=!issquarefree(fibonacci(n)) \\ Charles R Greathouse IV, Feb 02 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Eric W. Weisstein
STATUS
approved