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.

A259878 Gobel's sequence A003504 read mod 43.

Original entry on oeis.org

1, 2, 3, 5, 10, 28, 25, 37, 10, 20, 15, 38, 19, 42, 36, 34, 2, 35, 39, 31, 13, 2, 6, 26, 28, 29, 4, 14, 42, 5, 20, 17, 4, 20, 16, 29, 42, 13, 42, 20, 8, 23, 33
Offset: 0

Views

Author

N. J. A. Sloane, Jul 10 2015

Keywords

Crossrefs

Programs

  • Maple
    t1:=[1,2]; a:=2;
    for n from 1 to 41 do
    b:=a*(a+n)/(n+1) mod 43;
    t1:=[op(t1),b]; a:=b; od:
    t1;