cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A036284 Periodic vertical binary vectors of Fibonacci numbers.

This page as a plain text file.
%I A036284 #12 Jul 08 2025 21:02:40
%S A036284 6,24,1440,5728448,92568198012160,26494530374406845814111659520,
%T A036284 2095920895719545919920115988669687683503034097906010941440,
%U A036284 13128614603426246034591796912897206548807135027496968025827278400248602613784037111736380004928525614173642247188480
%N A036284 Periodic vertical binary vectors of Fibonacci numbers.
%C A036284 The sequence can be also computed with a recurrence that does not explicitly refer to Fibonacci numbers. See the given Maple and C programs.
%C A036284 Conjecture: For n>=1, each term a(n), when considered as a GF(2)[X]-polynomial, is divisible by GF(2)[X] -polynomial (x^3 + 1) ^ A000225(n-1). If this holds, then for n>=1, a(n) = A048720bi(A136380(n),A048723bi(9,A000225(n-1))). Conjecture 2: there is also one extra (x^1 + 1) factor present, see A136384.
%H A036284 A. Karttunen, <a href="/A036284/b036284.txt">Table of n, a(n) for n = 0..10</a>
%H A036284 A. Karttunen, <a href="/A036284/a036284.c.txt">C program for computing this sequence</a>
%F A036284 a(n) = Sum_{k=0..A007283(n)-1} ([A000045(k)/(2^n)] mod 2) * 2^k, where [] stands for floor function, i.e. Sum (bit n of Fibonacci(k))*(2^k), k = 0 ... (3*(2^n))-1.
%e A036284 When Fibonacci numbers are written in binary (see A004685), under each other as:
%e A036284 0000000 (0)
%e A036284 0000001 (1)
%e A036284 0000001 (1)
%e A036284 0000010 (2)
%e A036284 0000011 (3)
%e A036284 0000101 (5)
%e A036284 0001000 (8)
%e A036284 0001101 (13)
%e A036284 0010101 (21)
%e A036284 0100010 (34)
%e A036284 0110111 (55)
%e A036284 1011001 (89)
%e A036284 it can be seen that the bits in the n-th column from right repeat after a period of A007283(n): 3, 6, 12, 24, ... (See also A001175). This sequence is formed from those bits: 011, reversed is 110, is binary for 6, thus a(0) = 6. 000110, reversed is 11000, is binary for 24, thus a(1) = 24, 000001011010, reversed is 10110100000, is binary for 1440, thus a(2) = 1440.
%p A036284 A036284:=proc(n) option remember; local a, b, c, i, j, k, l, s, x, y, z; if (0 = n) then (6) else a := 0; b := 0; s := 0; x := 0; y := 0; k := 3*(2^(n-1)); l := 3*(2^n); j := 0; for i from 0 to l do z := bit_i(A036284(n-1),(j)); c := (a + b + (`if`((x = y),x,(z+1))) mod 2); if(c <> 0) then s := s + (2^i); fi; a := b; b := c; x := y; y := z; j := j + 1; if(j = k) then j := 0; fi; od; RETURN(s); fi; end:
%p A036284 bit_i := (x,i) -> `mod`(floor(x/(2^i)),2);
%t A036284 a[n_] := Sum[Mod[Fibonacci[k]/2^n // Floor, 2]* 2^k, {k, 0, 3*2^n - 1}]; Table[a[n], {n, 0, 7}] (* _Jean-François Alcover_, Mar 04 2016 *)
%Y A036284 Same sequence in octal base: A036285. Bits reversed: A036286. See also A136378, A136379, A136380, A136382, A136384, A037096, A037093, A000045.
%K A036284 nonn,base
%O A036284 0,1
%A A036284 _Antti Karttunen_, Nov 01 1998
%E A036284 Entry revised Dec 29 2007