A037917 Numbers n such that the Fibonacci number F(n) is divisible by a square.
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
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..328 (terms 1..235 from T. D. Noe, based on Kelly's table)
- Blair Kelly, Fibonacci Factorizations
- Eric Weisstein's World of Mathematics, Fibonacci Number.
Programs
-
Mathematica
Select[Range[100], MoebiusMu[Fibonacci[#]] == 0 &] (* Alonso del Arte, Jan 26 2014 *)
-
PARI
is(n)=!issquarefree(fibonacci(n)) \\ Charles R Greathouse IV, Feb 02 2014
Extensions
More terms from Eric W. Weisstein
Comments