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
9, 99, 183, 328, 528, 715, 999, 6099, 9999, 13224, 40495, 99999, 106755, 453288, 999999, 2066115, 2975208, 9999999, 22145328, 28027683, 99999999, 110213248, 110667555, 147928995, 178838403, 226123528, 275074575, 333052608, 378698224, 445332888, 446245635, 518348515 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Also numbers k such that k concatenated with itself gives the product of two numbers which differ by 2.
LINKS
EXAMPLE
8315420899//8315420896 = 9118892968 * 9118892972, where // denotes concatenation.
PROG
(Python)
from itertools import count, islice
from sympy import sqrt_mod
def A116136_gen(): # generator of terms
for j in count(0):
b = 10**j
a = b*10+1
for k in sorted(sqrt_mod(1, a, all_roots=True)):
if a*(b+3) <= k**2-1 < a*(a+2):
yield (k**2-1)//a
A116136_list = list(islice(A116136_gen(), 40)) # Chai Wah Wu, Feb 19 2024
CROSSREFS
Sequence in context: A083835 A305670 A045644 * A139280 A292449 A292739
KEYWORD
nonn,base
AUTHOR
Giovanni Resta, Feb 06 2006
EXTENSIONS
Edited by N. J. A. Sloane, Apr 15 2007
a(29)-a(32) from Chai Wah Wu, Feb 19 2024
STATUS
approved

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 16 09:52 EDT 2024. Contains 371698 sequences. (Running on oeis4.)