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-10 of 21 results. Next

A185659 Final prime of first member of A019518 that is divisible by 11^n.

Original entry on oeis.org

17, 499, 13679, 221489, 712289, 7648813, 604578017, 7868766709
Offset: 1

Views

Author

James G. Merickel, Feb 01 2011

Keywords

Examples

			2357111317 is divisible by 11, and concatenation through 499 is required for divisibility by 11^2.
		

Crossrefs

Cf. A183194, A185656, and following entries.

A185662 Final prime of first member of A019518 that is divisible by 13^n.

Original entry on oeis.org

61, 149, 199, 349493, 5709623, 100776157, 1142774723
Offset: 1

Views

Author

James G. Merickel, Feb 01 2011

Keywords

Examples

			The concatenations short of the one ending with 61 are not divisible by 13, while that one is.
		

Crossrefs

Cf. A183194, A185656, and those following.

A185665 Final prime of first member of A019518 that is divisible by 17^n.

Original entry on oeis.org

31, 1699, 1699, 901997, 24839599, 403445719, 2668745609
Offset: 1

Views

Author

James G. Merickel, Feb 01 2011

Keywords

Examples

			235711131719232931 is divisible by 17.
		

Crossrefs

Cf. A183194, A185656, and those following.

A185671 Final prime of first member of A019518 that is divisible by 23^n.

Original entry on oeis.org

3, 5861, 58573, 3916021, 284728111, 1910245261
Offset: 1

Views

Author

James G. Merickel, Feb 01 2011

Keywords

Examples

			While the very first concatenation is divisible by 23, 23^2 does not divide any such number until 5861 is adjoined.
		

Crossrefs

Cf. A183194, A185656, and those following.

A185677 Final prime adjoined in the smallest term of A019518 divisible by 31^n.

Original entry on oeis.org

107, 6619, 496897, 20005649, 308292781, 35800083049
Offset: 1

Views

Author

James G. Merickel, Feb 05 2011

Keywords

Comments

Associated with A019518(i) at i=28, 855, 41297, 1270946, 16677141,...

Crossrefs

A185680 Final prime adjoined in the smallest term of A019518 divisible by 37^n.

Original entry on oeis.org

1051, 10037, 14029, 614659, 106458763, 78505687129
Offset: 1

Views

Author

James G. Merickel, Feb 05 2011

Keywords

Comments

Associated with A019518(i) at i=177, 1232, 1655, 50205, 6111569,...

Crossrefs

A185704 Final prime adjoined in the smallest term of A019518 divisible by 73^n.

Original entry on oeis.org

593, 23909, 4851169, 84821071, 13231167673
Offset: 1

Views

Author

James G. Merickel, Feb 05 2011

Keywords

Comments

Associated with A019518(i) at i = 108, 2660, 338775, 4933945,...

Crossrefs

Programs

  • Python
    from sympy import nextprime
    def A185704(n):
        p, k, m = 2, 73**n, 10
        q, m2 = p % k, m % k
        while True:
            p = nextprime(p)
            while p >= m:
                m *= 10
                m2 = m % k
            q = (q*m2 + p) % k
            if q == 0:
                return p # Chai Wah Wu, May 01 2020

Extensions

a(5) from Chai Wah Wu, May 01 2020

A185695 Final prime adjoined in the smallest term of A019518 divisible by 61^n.

Original entry on oeis.org

23, 41719, 308537, 270907253, 28643801327
Offset: 1

Views

Author

James G. Merickel, Feb 05 2011

Keywords

Comments

Associated with A019518(i) at i = 9, 4363, 26688, 14758114, ...

Crossrefs

Programs

  • Python
    from sympy import nextprime
    def A185695(n):
        p, k, m = 2, 61**n, 10
        q, m2 = p % k, m % k
        while True:
            p = nextprime(p)
            while p >= m:
                m *= 10
                m2 = m % k
            q = (q*m2 + p) % k
            if q == 0:
                return p # Chai Wah Wu, May 01 2020

Extensions

a(5) from Chai Wah Wu, May 01 2020

A185698 Final prime adjoined in the smallest term of A019518 divisible by 67^n.

Original entry on oeis.org

37, 37, 14123267, 47321411, 5664619381
Offset: 1

Views

Author

James G. Merickel, Feb 05 2011

Keywords

Comments

Associated with A019518(i) at i = 12, 12, 917579, 2849864, ...

Examples

			23571113171923293137 is divisible by 67^2.
		

Crossrefs

Programs

  • Python
    from sympy import nextprime
    def A185698(n):
        p, k, m = 2, 67**n, 10
        q, m2 = p % k, m % k
        while True:
            p = nextprime(p)
            while p >= m:
                m *= 10
                m2 = m % k
            q = (q*m2 + p) % k
            if q == 0:
                return p # Chai Wah Wu, May 01 2020

Extensions

a(5) from Chai Wah Wu, May 01 2020

A185668 Final prime of first member of A019518 that is divisible by 19^n.

Original entry on oeis.org

271, 1831, 66947, 3746299, 66478091, 66478091, 57260418041
Offset: 1

Views

Author

James G. Merickel, Feb 01 2011

Keywords

Examples

			The first concatenation of primes--23, 235, 2357, 235711, etc.--that is divisible by 19 concatenates through 271, and to get divisibility by 19^2 it's necessary to go through 1831.
		

Crossrefs

Cf. A183194, A185656, and those following.
Showing 1-10 of 21 results. Next