OFFSET
1,1
LINKS
EXAMPLE
a(15) = 60 because the 15th positive Fibonacci number is 610 and the concatenation of initial and final digits of 610 is 60.
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 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Omar E. Pol, Apr 02 2008
STATUS
approved