A093091 "Fibonacci in pairs from left": start with a(1)=1, a(2)=1; repeatedly adjoin sum of previous two terms but chopped from the left into pairs of 2 digits.
1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 14, 4, 10, 3, 18, 14, 13, 21, 32, 27, 34, 53, 59, 61, 87, 11, 2, 12, 0, 14, 8, 98, 13, 14, 12, 14, 22, 10, 6, 11, 1, 27, 26, 26, 36, 32, 16, 17, 12, 28, 53, 52, 62, 68, 48, 33, 29, 40, 81, 10, 5, 11, 4, 13, 0, 11, 6, 81, 62, 69, 12, 1, 91, 15, 16
Offset: 1
Examples
... a(11)=a(9)+a(10), a(12)=left pair of (a(10)+a(11)=55+89=14 4), a(13)=right pair of (a(10)+a(11)=55+89=14 4), a(14)=left pair of (a(11)+a(12)=89+14=10 3), a(15)=right pair of (a(11)+a(12)=89+14=10 3), a(16)=a(12)+a(13) ...
Comments