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.

A019523 Concatenation of Fibonacci(1) through Fibonacci(n).

Original entry on oeis.org

1, 11, 112, 1123, 11235, 112358, 11235813, 1123581321, 112358132134, 11235813213455, 1123581321345589, 1123581321345589144, 1123581321345589144233, 1123581321345589144233377, 1123581321345589144233377610, 1123581321345589144233377610987
Offset: 1

Views

Author

R. Muller

Keywords

Comments

For n<=800, only a(2) and a(4) are primes. - Dmitry Kamenetsky, Feb 25 2009
a(n) has about kn(n+1) digits, where k = log phi/log 100 = 0.10449... - Charles R Greathouse IV, Sep 19 2012

References

  • S. Smarandoiu, Convergence of Smarandache continued fractions, Abstract 96T-11-195, Abstracts Amer. Math. Soc., 17 (No. 4, 1996), 680.

Crossrefs

Programs

  • Haskell
    a019523 n = read $ concatMap show $ take n $ tail a000045_list :: Integer
    -- Reinhard Zumkeller, Mar 01 2014
    
  • Magma
    [Seqint(Reverse(&cat[Reverse(Intseq(Fibonacci(k))): k in [1..n]])): n in [1..20]]; // Vincenzo Librandi, Dec 18 2016
  • Mathematica
    Table[FromDigits[Flatten[IntegerDigits[Fibonacci[Range[n]]]]], {n,25}] (* G. C. Greubel, Nov 30 2016 *)

Formula

a(n) = a(n-1)*10^A055642(A000045(n)) + A000045(n). - José de Jesús Camacho Medina, Dec 16 2016