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”).

A043313
a(n)=A033007(n)/10.
1
1, 2, 3, 4, 5, 6, 7, 8, 81, 83, 84, 85, 86, 87, 88, 89, 162, 163, 165, 166, 167, 168, 169, 170, 243, 244, 245, 247, 248, 249, 250, 251, 324, 325, 326, 327, 329, 330, 331, 332, 405, 406, 407, 408, 409, 411, 412, 413, 486, 487, 488
OFFSET
1,2
COMMENTS
Also: Numbers which, written in base 81, have only digits 0,...,8, and no two adjacent digits equal. - M. F. Hasler, Feb 03 2014
PROG
(PARI) is_A043313(n)=(n=[n])&&!until(!n[1], ((n=divrem(n[1], 81))[2]<9 && n[1]%9!=n[2])||return) \\ M. F. Hasler, Feb 03 2014
CROSSREFS
KEYWORD
nonn,base
STATUS
approved