The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A212193 In ternary representation of n: a(n) = if n is pandigital then 3 else least digit not used. 6
1, 0, 0, 2, 0, 0, 1, 0, 0, 2, 2, 3, 2, 0, 0, 3, 0, 0, 1, 3, 1, 3, 0, 0, 1, 0, 0, 2, 2, 3, 2, 2, 3, 3, 3, 3, 2, 2, 3, 2, 0, 0, 3, 0, 0, 3, 3, 3, 3, 0, 0, 3, 0, 0, 1, 3, 1, 3, 3, 3, 1, 3, 1, 3, 3, 3, 3, 0, 0, 3, 0, 0, 1, 3, 1, 3, 0, 0, 1, 0, 0, 2, 2, 3, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(A032924(n)) = 0; a(A081605(n)) <> 0;
a(A031944(n)) = 3; a(A154314(n)) <> 3.
LINKS
Eric Weisstein's World of Mathematics, Ternary
Eric Weisstein's World of Mathematics, Pandigital Number
EXAMPLE
. 0 -> '0': a(0) = 1
. 1 -> '1': a(1) = 0
. 2 -> '2': a(2) = 0
. 3 -> '10': a(3) = 2
. 4 -> '11': a(4) = 0
. 5 -> '12': a(5) = 0
. 6 -> '20': a(6) = 1
. 7 -> '21': a(7) = 0
. 8 -> '22': a(8) = 0
. 9 -> '100': a(9) = 2
. 10 -> '101': a(10) = 2
. 11 -> '102': a(11) = 3 <-- 11 is the smallest 3-pandigital number
. 12 -> '110': a(12) = 2
. 13 -> '111': a(13) = 0
. 14 -> '112': a(14) = 0
. 15 -> '120': a(15) = 3.
PROG
(Haskell)
import Data.List (delete)
a212193 n = f n [0..3] where
f x ys | x <= 2 = head $ delete x ys
| otherwise = f x' $ delete d ys where (x', d) = divMod x 3
CROSSREFS
Cf. A007089, A067898 (decimal).
Sequence in context: A284394 A188170 A363805 * A253189 A126030 A111373
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, May 04 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 05:21 EDT 2024. Contains 372528 sequences. (Running on oeis4.)