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.

A368361 Comma transform of the odd numbers.

Original entry on oeis.org

13, 35, 57, 79, 91, 11, 31, 51, 71, 92, 12, 32, 52, 72, 93, 13, 33, 53, 73, 94, 14, 34, 54, 74, 95, 15, 35, 55, 75, 96, 16, 36, 56, 76, 97, 17, 37, 57, 77, 98, 18, 38, 58, 78, 99, 19, 39, 59, 79, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91
Offset: 0

Views

Author

N. J. A. Sloane, Jan 02 2024

Keywords

Comments

See A367360 for further information.

Crossrefs

Programs

  • Maple
    a:= n-> parse(cat(""||(2*n+1)[-1], ""||(2*n+3)[1])):
    seq(a(n), n=0..79);  # Alois P. Heinz, Jan 03 2024
  • Python
    def A368361(n): return (10,30,50,70,90)[n%5]+int(str((n<<1)+3)[0]) # Chai Wah Wu, Jan 03 2024