OFFSET
0,3
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..1000
EXAMPLE
Fibonacci(6) = 8 = 1000_2, Fibonacci(7) = 13 = 1101_2, logical "OR" is 1101_2 = 13, so a(6)=13.
MATHEMATICA
BitOr@@#&/@Partition[Fibonacci[Range[0, 40]], 2, 1] (* Harvey P. Dale, Apr 15 2026 *)
PROG
(PARI) a(n) = bitor(fibonacci(n), fibonacci(n+1)); \\ Michel Marcus, Mar 06 2020
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
EXTENSIONS
More terms from Robert Lozyniak (11(AT)onna.com)
STATUS
approved
