OFFSET
0,1
COMMENTS
Leading zeros are omitted.
MAPLE
with(combinat) : catL := proc(i, j) i*10^(max(1, ilog10(j)+1))+j ; end: A134550 := proc(n) local f ; f := Fib(n) ; catL( catL(fibonacci(n), fibonacci(n+2)), fibonacci(n+4)) ; end: seq(A134550(n), n=0..28) ; # R. J. Mathar, Jan 30 2008
MATHEMATICA
Table[FromDigits[Flatten[IntegerDigits/@Fibonacci/@{n, n+2, n+4}]], {n, 0, 20}] (* James C. McMahon, Apr 06 2025 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Deuard Worthen (deuard(AT)tx.rr.com), Jan 23 2008, at the suggestion of N. J. A. Sloane
EXTENSIONS
More terms from R. J. Mathar, Jan 30 2008
STATUS
approved
