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-3 of 3 results.

A032552 Quotient of 'base-8' division described in A032551.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 7, 9, 9, 9, 11, 11, 14, 17, 18, 22, 21, 22
Offset: 1

Views

Author

Patrick De Geest, Apr 15 1998

Keywords

Comments

Note that, since A032551(1)=0, here a(1) is conventionally set to 1, but it refers to the ratio 0/0. - Giovanni Resta, Oct 21 2019

Crossrefs

Cf. A032551. See also A032532 for explanation.

Extensions

More terms from Larry Reeves (larryr(AT)acm.org), Sep 27 2000
Offset set to 1 and a(48)-a(52) added by Giovanni Resta, Oct 21 2019

A062945 Duplicate of A032551.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 34217, 34354, 68582, 68719, 68720, 70525, 70537, 70674
Offset: 1

Views

Author

Keywords

A139285 Smallest nontrivial number m that when expressed in base n and then interpreted in base 10, is a multiple of the original number.

Original entry on oeis.org

3, 2, 7, 6, 5, 308, 51, 34217, 7794416
Offset: 1

Views

Author

Sergio Pimentel, Jun 06 2008

Keywords

Comments

Not defined for n>9.
Note that for n=1, the unitary numeral system is used, whereas for n>=2, it is the usual base-dependent positional numeral system. - Michel Marcus, Sep 16 2020

Examples

			a(1)=3 since 3 in base 1 ('unary') is 111 and, interpreted in base 10, 111 is a number divisible by 3, whereas 2 in base 1 is 11 and, interpreted in base 10, 11 is not divisible by 2.
a(3)=7 since 7 in base 3 is 21 and, interpreted in base 10, 21 is divisible by 7, whereas 3, 4, 5, 6 in base 3 are, respectively, 10, 11, 12, 20 and, interpreted in base 10, these are numbers not divisible, respectively, by 3, 4, 5, 6.
Trivial solutions (i.e., m<n for n>1 and m=n for n=1) are not considered here.
		

Crossrefs

Programs

  • Python
    m,M=2,11
    while M%m>0:
        m,M=m+1,10*M+1
    print(1,m)
    for n in range(2,10):
        m,M,d=n,10,10-n
        while M%m>0:
            m=m+1
            u,s=m,0
            while u%n==0:
                u,s=u//n,10*s+d
            M=M+1+s
        print(n,m)
    # Dimiter Skordev, Sep 28 2020

Extensions

a(9) corrected by Giovanni Resta, Nov 02 2017
Showing 1-3 of 3 results.