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.

Showing 1-2 of 2 results.

A032537 Numbers that, when expressed in base 3 and then interpreted in base 10, yield a multiple of the original number.

Original entry on oeis.org

0, 1, 2, 7, 14, 15, 21, 38, 91, 132, 182, 203, 210, 273, 392, 420, 546, 637, 924, 1365, 1526, 1658, 1911, 1974, 2730, 3030, 3367, 4095, 5733, 6734, 7035, 10101, 20202, 21105, 22748, 30303, 44702, 49308, 68432, 107744, 112854, 129990, 205296
Offset: 1

Views

Author

Patrick De Geest, Apr 15 1998

Keywords

Examples

			7 in base 3 is 21, which interpreted in base 10 is 21=3*7.
		

Crossrefs

Programs

  • Mathematica
    lst = {0}; Do[If[Mod[FromDigits[IntegerDigits[n, 3]], n] == 0, AppendTo[lst, n]], {n, 10000}]; lst (* Carl Najafi, Aug 21 2011 *)

Extensions

Example and better description from Erich Friedman, Jul 21 2001
Edited by Erich Friedman Feb 09 2002
Offset set to 1 by Giovanni Resta, Jul 13 2016
Name edited by Jon E. Schoenfield, Oct 25 2019

A032536 Integer part of decimal 'base-3 looking' numbers divided by their actual base-3 values.

Original entry on oeis.org

1, 1, 3, 2, 2, 3, 3, 2, 11, 10, 9, 9, 8, 8, 8, 7, 7, 11, 10, 10, 10, 9, 9, 9, 8, 8, 37, 35, 34, 33, 32, 31, 30, 30, 29, 30, 29, 29, 28, 27, 27, 26, 26, 25, 26, 26, 25, 25, 24, 24, 23, 23, 23, 37, 36, 35, 35, 34, 34, 33, 33, 32, 33, 32, 32, 31, 31, 31, 30, 30, 29, 30, 30
Offset: 1

Views

Author

Patrick De Geest, Apr 15 1998

Keywords

Crossrefs

Cf. A007089, A032537, A032538. See also A032532 for explanation.

Programs

  • Mathematica
    Quotient[ FromDigits /@ IntegerDigits[ Range@ 73, 3], Range@ 73] (* Giovanni Resta, Jul 12 2016 *)

Formula

a(n) = floor(A007089(n)/n).

Extensions

Offset corrected by Giovanni Resta, Jul 12 2016
Showing 1-2 of 2 results.