OFFSET
0,2
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
P. Mathonet, M. Rigo, M. Stipulanti and N. Zénaïdi, On digital sequences associated with Pascal's triangle, arXiv:2201.06636 [math.NT], 2022.
Eric Weisstein's World of Mathematics, Ternary.
Wikipedia, Ternary numeral system
EXAMPLE
PROG
(Haskell)
a242399 n = foldr (\t v -> 3 * v + t) 0 $
map (flip mod 3) $ zipWith (+) ([0] ++ ts) (ts ++ [0])
where ts = a030341_row n
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, May 13 2014
STATUS
approved