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.

A115429 Numbers k such that the concatenation of k with k+8 gives a square.

Original entry on oeis.org

6001, 6433, 11085116, 44496481, 96040393, 115916930617, 227007035017, 274101929528, 434985419768, 749978863753, 996004003993, 1365379857457948, 1410590590957816, 1762388551055953, 2307340946901148, 2700383162251217
Offset: 1

Views

Author

Giovanni Resta, Jan 24 2006

Keywords

Comments

Also numbers k such that k concatenated with k+7 gives the product of two numbers which differ by 2.
Also numbers k such that k concatenated with k+4 gives the product of two numbers which differ by 4.
Also numbers k such that k concatenated with k-1 gives the product of two numbers which differ by 6.
Also numbers k such that k concatenated with k-8 gives the product of two numbers which differ by 8.

Examples

			6001//6009 = 7747^2, where // denotes concatenation.
96040393//96040400 = 98000200 * 98000202.
96040393//96040397 = 98000199 * 98000203.
96040393//96040392 = 98000198 * 98000204.
		

Crossrefs

Extensions

Edited by N. J. A. Sloane, Apr 15 2007

A116205 Numbers k such that k concatenated with k+7 gives the product of two numbers which differ by 3.

Original entry on oeis.org

1, 81, 1353, 3997, 7723, 23761, 26271, 76771, 1415683, 3890571, 8495497, 1066870443, 1239366513, 4198438981, 4534273891, 6502317141, 6918679731, 2199164200036329043, 2820114781174460091, 5500888421709400741
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Comments

Also numbers k such that k concatenated with k+9 gives the product of two numbers which differ by 1.
Also numbers k such that k concatenated with k-3 gives the product of two numbers which differ by 7.

Crossrefs

Extensions

Edited by N. J. A. Sloane, Apr 13 2007

A116153 Numbers k such that k concatenated with k-1 gives the product of two numbers which differ by 9.

Original entry on oeis.org

13, 41, 653, 2287, 2723, 5491, 23240971, 26823191, 60249661, 1841968537, 2009317771, 3044234903, 3258336353, 8166731261, 9481619237, 1281071245505271100098621541, 1551605670846640136726379653
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

A116160 Numbers k such that k concatenated with itself gives the product of two numbers which differ by 7.

Original entry on oeis.org

4, 94, 210, 294, 994, 5880, 9994, 52888, 99994, 127044, 414180, 999994, 8264470, 9999994, 12456750, 41868508, 99999994, 112670544, 441341880, 468144040, 669421494, 702338994, 715976338, 750005718, 960645294, 999999994
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

A116283 k times k+7 gives the concatenation of two numbers m and m-1.

Original entry on oeis.org

7, 30, 64, 42753, 57241, 75423, 425072, 574922, 979528, 4301393, 5698601, 7028666, 4925000747, 5074999247, 7748266574, 8511881484, 8814851184, 7059602159672, 7106167933828, 7439286611621, 7485852385777
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

Programs

  • Python
    def ok(n):
        s = str(n*(n+7)); h = (len(s)+1)//2; return int(s[:h])-1 == int(s[h:])
    print(list(filter(ok, range(2, 10**6)))) # Michael S. Branicky, Jul 30 2021
Showing 1-5 of 5 results.