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

A032544 Quotient of 'base-5' division described in A032543.

Original entry on oeis.org

1, 1, 1, 1, 2, 2, 2, 2, 4, 4, 4, 4, 8, 7, 6, 6, 8, 7, 7, 8, 7, 8, 16, 14, 13, 12, 12, 16, 14, 14, 16, 14, 16, 32, 29, 28, 26, 26, 24, 24, 32, 29, 28, 28, 32, 31, 28, 32, 64, 58, 56, 52, 52, 48, 48, 64, 58, 56, 56, 64, 62, 59, 56, 64, 128, 119, 116, 112, 104, 101, 104
Offset: 1

Views

Author

Patrick De Geest, Apr 15 1998

Keywords

Crossrefs

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

Extensions

Offset changed to 1 by Jinyuan Wang, Sep 04 2021
Showing 1-2 of 2 results.