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.

A073549 Number of Fibonacci numbers F(k), k <= 10^n, which end in 6.

Original entry on oeis.org

0, 6, 66, 666, 6666, 66666, 666666, 6666666, 66666666, 666666666, 6666666666, 66666666666, 666666666666, 6666666666666, 66666666666666, 666666666666666, 6666666666666666, 66666666666666666, 666666666666666666, 6666666666666666666, 66666666666666666666, 666666666666666666666, 6666666666666666666666, 66666666666666666666666
Offset: 1

Views

Author

Shyam Sunder Gupta, Aug 15 2002

Keywords

Comments

Apart from offset same as A002280. - Joerg Arndt, Jan 14 2018

Examples

			a(2)=6 because there are 6 Fibonacci numbers up to Fibonacci(10^2) which end in 6.
		

Programs

  • Maple
    A073549 := [seq((10^n - 10)/15, n=1..100)]; # Muniru A Asiru, Jan 14 2018
  • Mathematica
    LinearRecurrence[{11,-10},{0,6},30] (* or *) Table[(10^n-10)/15,{n,30}] (* Harvey P. Dale, Sep 08 2018 *)

Formula

a(n) = (10^n - 10)/15. - Robert Gerbicz, Sep 06 2002
a(n) = a(n-1) + 6*10^(n-2), with a(1)=0. - Vincenzo Librandi, Aug 08 2010

Extensions

More terms from Robert Gerbicz, Sep 06 2002