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.

A138844 Concatenation of initial and final digits of n-th positive Fibonacci number.

Original entry on oeis.org

11, 11, 22, 33, 55, 88, 13, 21, 34, 55, 89, 14, 23, 37, 60, 97, 17, 24, 41, 65, 16, 11, 27, 48, 75, 13, 18, 31, 59, 80, 19, 29, 38, 57, 95, 12, 27, 39, 66, 15, 11, 26, 47, 73, 10, 13, 23, 46, 79, 15, 24, 39, 53, 82, 15, 27, 32, 59, 91, 10, 21, 41, 62, 13, 15, 28, 43, 71, 14
Offset: 1

Views

Author

Omar E. Pol, Apr 02 2008

Keywords

Comments

Also, concatenation of A008963(n) and A003893(n).

Examples

			a(15) = 60 because the 15th positive Fibonacci number is 610 and the concatenation of initial and final digits of 610 is 60.
		

Crossrefs

Programs

  • Maple
    a:= n-> (f-> parse(cat(f[1], f[-1])))(""||(combinat[fibonacci](n))):
    seq(a(n), n=1..92);  # Alois P. Heinz, Nov 23 2023
  • Mathematica
    FromDigits[Join[{IntegerDigits[#][[1]]},{IntegerDigits[#][[-1]]}]]&/@ Fibonacci[Range[70]] (* Harvey P. Dale, Jun 15 2018 *)