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.

A020336 Numbers whose base-8 representation is the juxtaposition of two identical strings.

Original entry on oeis.org

9, 18, 27, 36, 45, 54, 63, 520, 585, 650, 715, 780, 845, 910, 975, 1040, 1105, 1170, 1235, 1300, 1365, 1430, 1495, 1560, 1625, 1690, 1755, 1820, 1885, 1950, 2015, 2080, 2145, 2210, 2275, 2340, 2405, 2470, 2535, 2600, 2665, 2730, 2795, 2860, 2925, 2990, 3055
Offset: 1

Views

Author

David W. Wilson, Melia Aldridge (ma38(AT)spruce.evansville.edu)

Keywords

Examples

			650_10 = 1212_8. - _Jon E. Schoenfield_, Feb 12 2021
		

Crossrefs

Programs

  • Mathematica
    a[n_] := n + n*8^Floor[Log[8, n] + 1]; Array[a, 50] (* Amiram Eldar, Apr 06 2021 *)

Formula

a(n) = n*8^floor(log_8(n)+1) + n. - Ilya Gutkovskiy, Jan 26 2018