login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A076641
Integers read backwards, but with repetitions omitted.
2
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 21, 31, 41, 51, 61, 71, 81, 91, 12, 22, 32, 42, 52, 62, 72, 82, 92, 13, 23, 33, 43, 53, 63, 73, 83, 93, 14, 24, 34, 44, 54, 64, 74, 84, 94, 15, 25, 35, 45, 55, 65, 75, 85, 95, 16, 26, 36, 46, 56, 66, 76, 86, 96, 17, 27, 37, 47, 57, 67, 77, 87, 97
OFFSET
0,3
COMMENTS
Although this is a list, it seems most natural here to have offset 0. - N. J. A. Sloane, Dec 09 2020
LINKS
Dana G. Korssjoen, Biyao Li, Stefan Steinerberger, Raghavendra Tripathi, and Ruimin Zhang, Finding structure in sequences of real numbers via graph theory: a problem list, arXiv:2012.04625, Dec 08, 2020
EXAMPLE
10 backwards is 01=1, but 1 already appears, so omit it.
MAPLE
s := (L::list)->sum(L[i]*10^(nops(L)-i), i=1..nops(L)); d := (X::posint)->convert(X, base, 10); SD := K->[seq(s(d(k)), k=1..K)];
PROG
(Haskell)
a076641 = a004086 . a067251 -- Reinhard Zumkeller, Aug 12 2013
CROSSREFS
Cf. A004086.
Sequence in context: A354081 A096106 A321990 * A076643 A352463 A326402
KEYWORD
easy,nonn,base
AUTHOR
Francois Jooste (phukraut(AT)hotmail.com), Oct 23 2002
EXTENSIONS
a(0) = 0 added by N. J. A. Sloane, Dec 09 2020
STATUS
approved