cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A043312 a(n) = A033006(n)/9.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 64, 66, 67, 68, 69, 70, 71, 128, 129, 131, 132, 133, 134, 135, 192, 193, 194, 196, 197, 198, 199, 256, 257, 258, 259, 261, 262, 263, 320, 321, 322, 323, 324, 326, 327, 384, 385, 386, 387, 388, 389, 391, 448, 449
Offset: 1

Views

Author

Keywords

Comments

Also: Numbers which, written in base 64, have only digits 0 through 7, and no two adjacent digits equal. - M. F. Hasler, Feb 03 2014

Crossrefs

Programs

  • Maple
    f:= proc(n) local i;
          seq(64*n+i, i= subs(n mod 64 = NULL, [$0..7]))
    end proc:
    A:= $1..7: R:= [A]:
    for d from 2 to 3 do
      R:= map(f, R);
      A:= A, op(R);
    od:
    A; # Robert Israel, Jun 11 2019
  • PARI
    is_A043312(n)=(n=[n])&&!until(!n[1],((n=divrem(n[1],64))[2]<8 && n[1]%8!=n[2])||return) \\ M. F. Hasler, Feb 03 2014