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

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

Original entry on oeis.org

9, 49, 1166975893986638437392162264780939, 1411174268292962563778302427727571, 1860631503683565562655236868895135
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 7.

Examples

			49//50 = 66 * 75, where // denotes concatenation.
49//58 = 67 * 74.
		

Crossrefs

Extensions

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

A116293 Numbers k such that k * (k+9) is the concatenation of a number m with itself.

Original entry on oeis.org

2, 92, 420, 572, 693, 728, 992, 9855, 9992, 36355, 63637, 99992, 970298, 999992, 4545455, 5454537, 9999992, 88235295, 99999992, 351069983, 403018035, 493927126, 506072866, 596981957, 648930009, 736842097, 739839100, 766233767, 769230761, 827751188, 857142858, 860139852, 879699240, 909090910
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Comments

From Robert Israel, Apr 09 2025: (Start)
Numbers k such that k * (k + 9) = (10^d + 1) * m for some d and m where m has d digits.
Contains 10^d-8 for all d >= 1. (End)

Crossrefs

Programs

  • Maple
    q:= proc(d,m) local R,t,a,b,x,q;
       t:= 10^d+1;
       R:= NULL;
       for a in numtheory:-divisors(t) do
         b:= t/a;
         if igcd(a,b) > 1 then next fi;
         for x from chrem([0,-m],[a,b]) by t do
           q:= x*(x+m)/t;
           if q >= 10^d then break fi;
           if q >= 10^(d-1) then R:= R, x fi;
       od od;
       sort(convert({R},list));
    end proc:
    seq(op(q(d,9)),d=1..10)

Extensions

Name edited and more terms from Robert Israel, Apr 09 2025

A116299 n times n+8 gives the concatenation of two numbers m and m+1.

Original entry on oeis.org

40, 53, 40354307, 59645686, 39704957106129738595969799927610, 44505281604832422780051712184759, 45053875613995255103944518907119, 54946124386004744896055481092874, 55494718395167577219948287815234
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			59645686 * 59645694 = 35576083//35576084, where // denotes
concatenation.
		

Crossrefs

A116306 n times n+9 gives the concatenation of two numbers m and m+2.

Original entry on oeis.org

3349727, 3922992, 6077000, 6650265, 4076746044440402197, 5923253955559597795, 7713109680804038561, 33652275100997044455421, 66347724899002955544571, 74261393963751156983420
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			6650265 * 6650274 = 4422608//4422610, where // denotes
concatenation.
		

Crossrefs

Showing 1-4 of 4 results.