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.

A345378 Number of terms m <= n, where m is a term in A006497.

Original entry on oeis.org

0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
Offset: 0

Views

Author

Ovidiu Bagdasar, Jun 16 2021

Keywords

Comments

Table 1 of Andrica 2021 paper (p. 24), refers to A006497 as "bronze Lucas" numbers.

Examples

			a(0)=a(1)=0, since the least term in A006497 is 2.
a(2)=1 since A006497(0) = 2 is followed in that sequence by 3.
a(k)=3 for 3 <= k <= 11 since the first terms of A006490 are {0, 2, 3, 11}.
		

Crossrefs

Cf. A006497, A108852 (Fibonacci), A130245 (Lucas), A345377.

Programs

  • Mathematica
    Block[{a = 3, b = -1, nn = 105, u, v = {}}, u = {0, 1}; Do[AppendTo[u, Total[{-b, a} u[[-2 ;; -1]]]]; AppendTo[v, Count[u, _?(# <= i &)]], {i, nn}]; {Boole[First[u] <= 0]}~Join~v] (* or *)
    {0}~Join~Accumulate@ ReplacePart[ConstantArray[0, Last[#]], Map[# -> 1 &, #]] &@ LucasL[Range[0, 4], 3] (* Michael De Vlieger, Jun 16 2021 *)