A196024 Odious Fibonacci numbers.
1, 2, 8, 13, 21, 55, 233, 1597, 4181, 28657, 121393, 196418, 317811, 1346269, 2178309, 3524578, 9227465, 165580141, 1134903170, 1836311903, 2971215073, 20365011074, 32951280099, 53316291173, 225851433717, 2504730781961, 6557470319842, 17167680177565, 27777890035288
Offset: 1
Examples
8 is a Fibonacci number that equals 1000 in binary, which contains one (odd number) 1.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Maple
isA000069 := proc(n) type(wt(n),'odd') ; end proc: for n from 1 to 300 do F := combinat[fibonacci](n) ; if isA000069(F) then printf("%d,",F) ; end if; end do: # R. J. Mathar, Oct 15 2011
-
Mathematica
Rest[Select[Fibonacci[Range[100]],OddQ[DigitCount[#,2,1]]&]] (* Harvey P. Dale, Oct 16 2011 *)
Comments