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.

A118117 Concatenate n F(n) times.

Original entry on oeis.org

1, 2, 33, 444, 55555, 66666666, 7777777777777, 888888888888888888888, 9999999999999999999999999999999999, 10101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010
Offset: 1

Views

Author

Jonathan Vos Post, May 11 2006

Keywords

Comments

A000461 Concatenate n n times.

Examples

			a(6) = 6 concatenated F(6) times = 6 concatenated 8 times = 66666666, where F(n) = the n-th Fibonacci number.
		

References

  • F. Smarandache, "Properties of the numbers", Univ. of Craiova Archives, 1975; Arizona State University Special Collections, Tempe, AZ.

Crossrefs

Programs

  • Mathematica
    Table[FromDigits[Flatten[IntegerDigits/@PadRight[{},Fibonacci[n],n]]],{n,10}] (* Harvey P. Dale, Aug 09 2020 *)

Formula

a(n) = n concatenated A000045(n) times. a(n) = A000027(n) concatenated A000045(n) times.