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.

A004640 Cubes written in base 11. (Next term contains a non-decimal character.)

Original entry on oeis.org

1, 8, 25, 59, 104, 187, 292, 426, 603
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A000578, A004632-A004639 (cubes written in base 2-9).

Programs

  • PARI
    a(n) = my(d=digits(n^3, 11)); my(s="", x); for(i=1, #d, if(d[i]<10, x = d[i], x = "A"); s = concat(s, x)); s \\ Jianing Song, May 22 2024, after Michel Marcus's program for A004684