Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #6 Sep 18 2015 03:39:43
%S 13,125,138,2513,3821,51334,82155,133489,2155144,3489233,55144377,
%T 89233610,144377987,2336101597,3779872584,61015974181,98725846765,
%U 1597418110946,2584676517711,41811094628657,67651771146368
%N Concatenate Fibonacci(n), Fibonacci(n+2) and Fibonacci(n+4).
%C Leading zeros are omitted.
%p 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
%K nonn,base,easy
%O 0,1
%A Deuard Worthen (deuard(AT)tx.rr.com), Jan 23 2008, at the suggestion of _N. J. A. Sloane_
%E More terms from _R. J. Mathar_, Jan 30 2008