OFFSET
1,1
COMMENTS
a(n) = A162711(n,2) for n>1. - Reinhard Zumkeller, Jul 11 2009
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
34 is the third entry because the natural numbers written together look like 1234567891011 and reading them off two at a time produces 12, 23, 34, ...
PROG
(Haskell)
a136414 n = a136414_list !! (n-1)
a136414_list = zipWith (+) (tail a007376_list) $ map (10 *) a007376_list
-- Reinhard Zumkeller, Jul 28 2011
CROSSREFS
KEYWORD
AUTHOR
Ben Paul Thurston, Mar 31 2008
EXTENSIONS
More terms from Reinhard Zumkeller, Jul 11 2009
STATUS
approved