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.

A028900 Map n = Sum c_i 10^i to a(n) = Sum c_i 5^i.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 35, 36, 37, 38, 39
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    f:= proc(n) local L,i;
      L:= convert(n,base,10);
      add(L[i]*5^(i-1),i=1..nops(L))
    end proc:
    map(f, [$1..100]); # Robert Israel, Jan 14 2021

Extensions

More terms from Erich Friedman.