A181691 Numbers k such that Fibonacci(k) has exactly two 1's.
19, 26, 27, 37, 40, 47, 51, 56, 61, 64, 68, 69, 70, 72, 79, 84, 86, 87, 92, 97, 98, 99, 102, 108, 113, 121, 135, 138, 140, 144, 153, 154, 162, 164, 167, 178, 183, 185, 191, 228, 235, 250, 251, 252, 257, 269, 292, 306
Offset: 1
Examples
From _David A. Corneth_, Sep 04 2025: (Start) 56 is in the sequence as Fibonacci(56) = 225851433717 which has exactly two ones. 307 is not in the sequence as Fibonacci(307) ends in 109298792472139250504213 which has three 1's. 355 is not in the sequence as it has exactly one 1. (End)
Programs
-
Mathematica
Select[Range[310],DigitCount[Fibonacci[#],10,1]==2&] (* Harvey P. Dale, Apr 02 2012 *)
Comments