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!)
A018846 Strobogrammatic numbers: numbers that are the same upside down (using calculator-style numerals). 9

%I #21 Jul 09 2022 11:06:13

%S 0,1,2,5,8,11,22,55,69,88,96,101,111,121,151,181,202,212,222,252,282,

%T 505,515,525,555,585,609,619,629,659,689,808,818,828,858,888,906,916,

%U 926,956,986,1001,1111,1221,1551,1691,1881,1961,2002,2112,2222,2552,2692,2882

%N Strobogrammatic numbers: numbers that are the same upside down (using calculator-style numerals).

%C A018847 lists primes in this sequence. - _M. F. Hasler_, May 05 2012

%H Michael S. Branicky, <a href="/A018846/b018846.txt">Table of n, a(n) for n = 1..10000</a> (terms 1..1000 from T. D. Noe)

%o (PARI) is_A018846(n,t=Vec("012..59.86"))={ apply(x->t[eval(x)+1], n=Vec(Str(n)))==vecextract(n, "-1..1") } \\ _M. F. Hasler_, May 05 2012

%o (Python)

%o from itertools import count, islice, product

%o def ud(s): return s[::-1].translate({ord('6'):ord('9'), ord('9'):ord('6')})

%o def A018846gen(): # generator of terms

%o yield from [0, 1, 2, 5, 8]

%o for d in count(2):

%o for first in "125689":

%o for rest in product("0125689", repeat=d//2-1):

%o left = first + "".join(rest)

%o for mid in [[""], ["0", "1", "2", "5", "8"]][d%2]:

%o yield int(left + mid + ud(left))

%o print(list(islice(A018846gen(), 54))) # _Michael S. Branicky_, Jul 09 2022

%Y Cf. A053701 (vertically symmetric numbers), A048708.

%K nonn,base,easy,nice

%O 1,3

%A _David W. Wilson_

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 April 23 07:57 EDT 2024. Contains 371905 sequences. (Running on oeis4.)