OFFSET
1,1
COMMENTS
Self-descriptive sequence: even terms are the sequence itself, odd terms are the digits of the decimal expansion of Pi.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Clark Kimberling, Fractal sequences.
FORMULA
a(2n) = a(n); a(2n-1) = digits of Pi.
PROG
(Haskell)
import Data.List (transpose)
a110766 n = a110766_list !! (n-1)
a110766_list = concat $ transpose [a000796_list, a110766_list]
-- Reinhard Zumkeller, Aug 29 2014
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Alexandre Wajnberg, Sep 15 2005
EXTENSIONS
a(85) corrected and formula fixed by Reinhard Zumkeller, Aug 29 2014
STATUS
approved