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.

A367342 a(n) = n+1 for n = 1 to 8; a(n) = 100 + a(n-8) for n = 9 to 16; thereafter a(8*i+j) = 10^(i+1) + a(8*(i-1)+j) for i >= 2, 1 <= j <= 8.

Original entry on oeis.org

2, 3, 4, 5, 6, 7, 8, 9, 102, 103, 104, 105, 106, 107, 108, 109, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 11102, 11103, 11104, 11105, 11106, 11107, 11108, 11109, 111102, 111103, 111104, 111105, 111106, 111107, 111108, 111109, 1111102, 1111103, 1111104, 1111105, 1111106, 1111107, 1111108, 1111109
Offset: 1

Views

Author

Keywords

Comments

Conjectured to equal A367341(n)/9.

Crossrefs

Cf. A367341.

Programs

Formula

a(n) = ((10^i-1)/9)*100 + j, where i = floor((n-1)/8) and j = (n-1) mod 8 + 2.