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

A116126 Numbers k such that k concatenated with k-5 gives the product of two numbers which differ by 8.

Original entry on oeis.org

10, 6752089, 6448802889351008245, 18894512461523256139943105859903480218905, 31958875438439894736354375209245786214798
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

A116244 Numbers k such that k * (k + 8) is the concatenation of two numbers m and m-7.

Original entry on oeis.org

94, 461, 532, 714, 818, 994, 3424, 6569, 9994, 90903, 99994, 980198, 999994, 3636357, 6363636, 9999994, 41176464, 58823529, 99999994, 413533834, 426573426, 428571422, 432620005, 567379988, 571428571, 573426567
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Comments

From Robert Israel, Aug 22 2023: (Start)
Numbers k = a*c-1 such that for some positive integers a,b,c,d,e we have
10^e + 1 = a*b
10^(e-1) <= c*d < 10^e
a*c + 6 = b*d.
Includes 10^k-6 for k >= 2. (End)

Crossrefs

Programs

  • Maple
    F:= proc(d) local R, t,alpha, beta, gamma, delta, B,C,n,m,i0,i,gamma0, delta0;
       R:= NULL;
       t:= 10^d+1;
       for alpha in numtheory:-divisors(t) do
         beta:= t/alpha;
         if igcd(alpha,beta) > 1 then next fi;
         delta0:= 6/beta mod alpha;
         gamma0:= (beta*delta0-6)/alpha;
         B:= 2*alpha*gamma0 + 6;
         C:= gamma0*delta0 - 10^(d-1) - 7;
         if C < 0 then i0:= 0 else i0:= ceil((-B + sqrt(B^2-4*t*C))/(2*t)) fi;
         for i from i0 do
           gamma:= gamma0 + i*beta;
           delta:= delta0 + i*alpha;
           m:= gamma*delta;
           if m -7 >= 10^d then break fi;
           if m - 7 >= 10^(d-1) then R:= R, alpha*gamma-1 fi;
         od
       od;
       sort(convert({R},list))
    end proc:
    seq(op(F(d)),d=1..10); # Robert Israel, Aug 22 2023
  • Mathematica
    a[n_] := Module[{solutions = {}, kvalues, e = 2}, While[Length[solutions] < n, sol = Solve[{a*b == 10^e + 1, 10^(e - 1) <= c*d < 10^e, a*c + 6 == b*d, a > 0, b > 0, c > 0, d > 0}, {a, b, c, d}, Integers]; kvalues = (a*c - 1) /. sol; solutions = Union[solutions, kvalues]; e++]; Take[solutions, n]]; a[26] (* Robert P. P. McKone, Aug 22 2023 *)

A116256 Numbers k such that k*(k+6) gives the concatenation of two numbers m and m-5.

Original entry on oeis.org

6, 96, 450, 545, 688, 853, 996, 4379, 5616, 9996, 72727, 99996, 346530, 653465, 999996, 9090905, 9999996, 94117643, 99999996, 334665330, 336032384, 378253325, 390977439, 439928488, 483516483, 516483512, 560071507
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Crossrefs

A116270 n times n+8 gives the concatenation of two numbers m and m-3.

Original entry on oeis.org

62, 45211539, 54788454, 78317866, 72388446037855609175404256, 73247326752475247326752671, 75267524732673267524732471, 76126405447292905676080886, 42053270820132695893502981749302
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			78317866 * 78317874 = 61336887//61336884, where // denotes
concatenation.
		

Crossrefs

A116337 Numbers k such that k*(k+4) gives the concatenation of two numbers m and m+7.

Original entry on oeis.org

8217108, 8030443878983905982, 43467818511541680701794365325328847002052, 56532181488458319298205634674671152997945
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			8217108 * 8217112 = 6752089//6752096, where // denotes concatenation.
		

Crossrefs

A116258 Numbers k such that k*(k+9) gives the concatenation of two numbers m and m-5.

Original entry on oeis.org

8444, 8809, 69125298546226023970, 69855225553525294043, 74604750601020544518, 75334677608319814591, 92496418993920707745, 93226346001219977818, 97975871048715228293, 98705798056014498366
Offset: 1

Views

Author

Giovanni Resta, Feb 06 2006

Keywords

Examples

			8809 * 8818 = 7767//7762, where // denotes concatenation.
		

Crossrefs

Showing 1-6 of 6 results.