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.

A294688 Palindromes in Narayana's cows sequence (A000930).

Original entry on oeis.org

1, 2, 3, 4, 6, 9, 88, 595
Offset: 1

Views

Author

Chai Wah Wu, Nov 06 2017

Keywords

Comments

595 is probably the last term.

Crossrefs

Programs

  • Maple
    a := proc(n) if n < 4 then n else
    simplify(hypergeom([-n/3, (1-n)/3, (-1-n)/3], [-n/2, (-1-n)/2], -27/4));
    convert(%, base, 10); ListTools:-Reverse(%);
    if %% = % then add(%[k]*10^(k-1), k=1..nops(%)) else NULL fi fi end:
    seq(a(n), n=1..200); # Peter Luschny, Nov 07 2017