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.

A331083 The number of terms in the negaFibonacci representation of n (A215022).

Original entry on oeis.org

1, 1, 2, 2, 1, 2, 2, 3, 3, 2, 3, 2, 1, 2, 2, 3, 3, 2, 3, 3, 4, 4, 3, 4, 3, 2, 3, 3, 4, 3, 2, 3, 2, 1, 2, 2, 3, 3, 2, 3, 3, 4, 4, 3, 4, 3, 2, 3, 3, 4, 4, 3, 4, 4, 5, 5, 4, 5, 4, 3, 4, 4, 5, 4, 3, 4, 3, 2, 3, 3, 4, 4, 3, 4, 4, 5, 4, 3, 4, 3, 2, 3, 3, 4, 3, 2, 3
Offset: 1

Views

Author

Amiram Eldar, Jan 08 2020

Keywords

Comments

The Fibonacci numbers F(2*n) are the indices of records of this sequence.

Examples

			The negaFibonacci representation of 3 is A215022(3) = 101, thus a(3) = 1 + 0 + 1 = 2.
		

Crossrefs

Programs

  • Mathematica
    ind[n_] := Floor[Log[Abs[n]*Sqrt[5] + 1/2]/Log[GoldenRatio]]; f[1] = 1; f[n_] := If[n > 0, i = ind[n - 1]; If[EvenQ[i], i++]; i, i = ind[-n]; If[OddQ[i], i++]; i]; a[n_] := Module[{k = n, s = 0}, While[k != 0, i = f[k]; s += 1; k -= Fibonacci[-i]]; s]; Array[a, 100]

Formula

a(A000045(2*n - 1)) = 1.
a(A000045(2*n)) = n.