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.

A192162 Monotonic ordering of nonnegative differences 5^i-4^j, for 40>= i>=0, j>=0.

Original entry on oeis.org

0, 1, 4, 9, 21, 24, 61, 109, 121, 124, 369, 561, 609, 621, 624, 2101, 2869, 3061, 3109, 3121, 3124, 11529, 12589, 14601, 15369, 15561, 15609, 15621, 15624, 61741, 74029, 77101, 77869, 78061, 78109, 78121, 78124, 128481, 325089, 374241, 386529, 389601, 390369
Offset: 1

Views

Author

Clark Kimberling, Jun 24 2011

Keywords

Crossrefs

Cf. A192161.

Programs

  • Mathematica
    c = 5; d = 4; t[i_, j_] := c^i - d^j;
    u = Table[t[i, j], {i, 0, 40}, {j, 0, i*Log[d, c]}];
    v = Union[Flatten[u ]]