OFFSET
1,2
COMMENTS
LINKS
L. Carlitz, R. Scoville and T. Vaughan, Some arithmetic functions related to Fibonacci numbers, Fib. Quart., 11 (1973), 337-386.
PROG
(Haskell)
import Data.List (transpose)
a247419 n = a247419_list !! (n-1)
a247419_list = concat $
transpose [map (subtract 1) a003256_list, a003256_list]
-- Reinhard Zumkeller, Oct 03 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric M. Schmidt, Sep 16 2014
STATUS
approved