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

A116267 Numbers k such that k*(k+4) gives the concatenation of two numbers m and m-3.

Original entry on oeis.org

8, 98, 426, 571, 725, 844, 998, 7808, 9998, 36363, 63634, 99998, 326732, 673265, 999998, 4545452, 5454545, 9999998, 47058821, 52941176, 99999998, 331983805, 332667332, 384615384, 422892896, 475524475, 524475522, 577107101, 615384613, 667332665, 668016192, 719964244
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

Programs

  • Python
    from itertools import count, islice
    from sympy import sqrt_mod
    def A116267_gen(): # generator of terms
        for j in count(0):
            b = 10**j
            a = b*10+1
            for k in sorted(sqrt_mod(1,a,all_roots=True)):
                if a*(b+3) <= k**2-1 < a*(a+2):
                    yield k-2
    A116267_list = list(islice(A116267_gen(),20)) # Chai Wah Wu, Feb 19 2024

Extensions

a(29)-a(32) from Chai Wah Wu, Feb 19 2024

A116252 n times n+2 gives the concatenation of two numbers m and m-5.

Original entry on oeis.org

80, 8156, 9800, 467346, 532653, 998000, 76450588, 99980000, 7801738414, 8593817622, 9208120792, 9999800000, 346667333466, 401461854014, 598538145985, 653332666533, 945207479452, 999998000000, 48349470735059
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

A116265 n times n+1 gives the concatenation of two numbers m and m-3.

Original entry on oeis.org

96013, 3812029082958589067221817215314, 6187970917041410932778182784686, 3189731673290266386838927279556315882
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			96013 * 96014 = 92185//92182, where // denotes concatenation.
		

Crossrefs

A116273 Numbers k such that k*(k+2) gives the concatenation of two numbers m and m-2.

Original entry on oeis.org

90, 9078, 9900, 733673, 999000, 88225294, 99990000, 8900869207, 9296908811, 9604060396, 9999900000, 326666333266, 673333666733, 700730927007, 972603739726, 999999000000, 34519562953736, 39737862788837
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			90 is a member since 90*92 = 8280 = 82 80.
9078 is a member since 9078*9080 = 82428240 = 8242 8240.
		

Crossrefs

A116135 Duplicate of A115431.

Original entry on oeis.org

6, 5346, 8083, 10578, 45531, 58626, 2392902, 2609443, 7272838, 51248898, 98009803, 159728062051, 360408196038, 523637103531, 770378933826, 998000998003, 1214959556998, 1434212848998, 3860012299771, 4243705560771
Offset: 1

Views

Author

Keywords

Crossrefs

Showing 1-5 of 5 results.