A254141 The average of a(n) consecutive Fibonacci numbers is never an integer.
8, 16, 21, 28, 32, 40, 52, 55, 56, 64, 65, 68, 69, 80, 84, 85, 87, 88, 92, 93, 99, 104, 105, 112, 117, 119, 128, 132, 133, 136, 140, 141, 145, 148, 152, 153, 155, 156, 160, 161, 164, 165, 171, 172, 176, 184, 187, 188, 196, 200, 203, 204, 205, 207, 208, 209, 212
Offset: 1
Keywords
Links
- Paolo P. Lava, Table of n, a(n) for n = 1..200
- Paolo P. Lava, List of indexes and steps (k, x, y)
Crossrefs
Programs
-
Maple
with(numtheory); with(combinat):P:=proc(q) local a,b,k,j,n,ok; for j from 1 to q do b:=0; ok:=1; for n from 0 to q do a:=add(fibonacci(n+k),k=0..j-1)/j; if type(a,integer) then ok:=0; break; fi; od; if ok=1 then print(j); fi; od; end: P(20000);
Comments