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.

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

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 10, 15, 20, 25, 50, 75, 100, 125, 160, 224, 237, 250, 320, 330, 375, 490, 500, 625, 800, 1000, 1120, 1185, 1250, 1600, 1650, 1875, 2450, 2500, 3125, 3800, 4000, 4704, 5000, 5600, 5925, 6250, 7600, 8000, 8250, 9375, 10000, 12250
Offset: 1

Views

Author

Patrick De Geest, Apr 15 1998

Keywords

Comments

From Robert Israel, Apr 10 2016: (Start)
n for which n divides A007091(n).
If n is in the sequence, then so is 5*n. (End)

Examples

			25 in base 5 is 100, which interpreted in base 10 is 100 = 4 * 25.
224 in base 5 is 1344, which interpreted in base 10 is 1344 = 6 * 224.
		

Crossrefs

Programs

  • Maple
    filter:= proc(n) local L,i;
    L:= convert(n,base,5);
    add(L[i]*10^(i-1),i=1..nops(L)) mod n = 0
    end proc:
    0, op(select(filter, [$1..10^5])); # Robert Israel, Apr 10 2016
  • Mathematica
    Select[Range[0,13000], Divisible[FromDigits[IntegerDigits[#, 5]], #] &] (* Harvey P. Dale, Feb 01 2011 *)

Extensions

Example and better description from Erich Friedman, Jul 21 2001
Edited by Erich Friedman, Feb 09 2002
Offset changed and 0 inserted by Robert Israel, Apr 11 2016
Name edited by Jon E. Schoenfield, Oct 25 2019

A032542 Integer part of decimal 'base-5 looking' numbers divided by their actual base-5 values.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3
Offset: 1

Views

Author

Patrick De Geest, Apr 15 1998

Keywords

Crossrefs

Cf. A032543, A032544. See also A032532 for explanation.

Formula

a(n) = floor(A007091(n)/n). - Sean A. Irvine, Jun 22 2020

Extensions

Offset and data corrected by Sean A. Irvine, Jun 22 2020
Showing 1-2 of 2 results.