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.

A219906 Number of different straight line programs of length n.

Original entry on oeis.org

1, 3, 13, 82, 788, 12141, 302791, 11729499
Offset: 0

Views

Author

N. J. A. Sloane, Dec 13 2012

Keywords

Comments

See Borwein and Hobart (or A216999) for definition.

Crossrefs

Programs

  • Maple
    g:= f-> seq([f[], t], t={seq(seq({i+j, i-j, i*j}[], j=f), i=f)}):
    F:= proc(n) F(n):= map(g, F(n-1)) end: F(0):= {[1]}:
    a:= n-> nops(F(n)):
    seq(a(n), n=0..5);  # Alois P. Heinz, Dec 14 2012

Extensions

Typo in a(4) corrected, a(6)-a(7) from Alois P. Heinz, Dec 14 2012