login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A116136 Numbers k such that k concatenated with k-3 gives the product of two numbers which differ by 4. 11

%I #17 Feb 19 2024 20:59:42

%S 9,99,183,328,528,715,999,6099,9999,13224,40495,99999,106755,453288,

%T 999999,2066115,2975208,9999999,22145328,28027683,99999999,110213248,

%U 110667555,147928995,178838403,226123528,275074575,333052608,378698224,445332888,446245635,518348515

%N Numbers k such that k concatenated with k-3 gives the product of two numbers which differ by 4.

%C Also numbers k such that k concatenated with itself gives the product of two numbers which differ by 2.

%H Chai Wah Wu, <a href="/A116136/b116136.txt">Table of n, a(n) for n = 1..10000</a>

%e 8315420899//8315420896 = 9118892968 * 9118892972, where // denotes concatenation.

%o (Python)

%o from itertools import count, islice

%o from sympy import sqrt_mod

%o def A116136_gen(): # generator of terms

%o for j in count(0):

%o b = 10**j

%o a = b*10+1

%o for k in sorted(sqrt_mod(1,a,all_roots=True)):

%o if a*(b+3) <= k**2-1 < a*(a+2):

%o yield (k**2-1)//a

%o A116136_list = list(islice(A116136_gen(),40)) # _Chai Wah Wu_, Feb 19 2024

%Y Cf. A116129, A115431, A116099, A115426, A116267.

%Y Cf. also A102567, A116154, A116130, A116286.

%K nonn,base

%O 1,1

%A _Giovanni Resta_, Feb 06 2006

%E Edited by _N. J. A. Sloane_, Apr 15 2007

%E a(29)-a(32) from _Chai Wah Wu_, Feb 19 2024

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)