OFFSET
1,3
COMMENTS
A000787 without using digit 8, considered here as composed of two circles with different radius. 'Same upside down' means central symmetric, that is 180-degree rotationally symmetric about a central axis perpendicular to the screen plane. See the comment by M. F. Hasler in A000787. - Wolfdieter Lang, Oct 25 2013
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..10000 (terms 1..1535 from T. D. Noe)
PROG
(Python)
from itertools import count, islice, product
def ud(s): return s[::-1].translate({ord('6'):ord('9'), ord('9'):ord('6')})
def agen():
yield from [0, 1]
for d in count(2):
for start in "169":
for rest in product("0169", repeat=d//2-1):
left = start + "".join(rest)
right = ud(left)
for mid in [[""], ["0", "1"]][d%2]:
yield int(left + mid + right)
print(list(islice(agen(), 43))) # Michael S. Branicky, Mar 29 2022
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
N. J. A. Sloane, May 01 2010, based on a suggestion from Terry Stickels
EXTENSIONS
Extended by T. D. Noe, May 03 2010
STATUS
approved