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.

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

Original entry on oeis.org

11, 101, 1001, 10001, 100001, 1000001, 10000001, 100000001, 1000000001, 10000000001, 13223140496, 20661157025, 29752066116, 40495867769, 52892561984, 66942148761, 82644628100, 100000000001, 1000000000001
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Comments

From Robert Israel, Aug 13 2018: (Start)
Contained in, and apparently identical, to A116129.
Numbers k such that k*(10^d+1) is a square, where k-9 has d decimal digits.
(End)

Examples

			100000001//99999992 = 99999998 * 100000004, where // denotes
concatenation.
		

Crossrefs

Programs

  • Maple
    g:= proc(d) local r,c,a,b;
       r:= mul(t[1],t=select(s -> s[2]::odd, ifactors(10^d+1)[2]))
       c:= ceil((10^(d-1)+9)/r);
       a:= isqrt(c);
       if a^2 < c then a:= a+1 fi;
       c:= floor((10^d+8)/r);
       b:= isqrt(c);
       if b^2 > c then b:= b-1 fi;
       seq(r*y^2, y = a..b)
    end proc:
    seq(g(d),d=1..60); # Robert Israel, Aug 13 2018

A116237 n times n+6 gives the concatenation of two numbers m and m-8.

Original entry on oeis.org

7, 9, 97, 99, 425, 570, 724, 843, 997, 999, 7807, 9997, 9999, 36362, 63633, 99997, 99999, 326731, 673264, 999997, 999999, 4545451, 5454544, 9999997, 9999999, 47058820, 52941175, 99999997, 99999999, 331983804, 332667331, 384615383
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

A116228 n times n+5 gives the concatenation of two numbers m and m-9.

Original entry on oeis.org

96011, 3812029082958589067221817215312, 6187970917041410932778182784684, 3189731673290266386838927279556315880
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			96011 * 96016 = 92185//92176, where // denotes concatenation.
		

Crossrefs

A116230 n times n+7 gives the concatenation of two numbers m and m-9.

Original entry on oeis.org

80, 77394226, 89158932, 36623663376237623663376334, 37633762366336633762366234, 62366237633663366237633760, 63376336623762376336623660, 86194223018927804587702127
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			89158932 * 89158939 = 79493157//79493148, where // denotes
concatenation.
		

Crossrefs

Showing 1-4 of 4 results.