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!)
A116275 Numbers k such that k*(k+4) gives the concatenation of two numbers m and m-2. 6
8872, 9009, 83352840, 99000099, 329767122286, 670232877711, 738226276371, 933006600339, 999000000999, 3779410975143113, 3872816717528065, 4250291784692548, 4278630943941865, 4372036686326817, 4749511753491300, 5250488246508697, 5627963313673180, 5721369056058132 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
99000099 * 99000103 = 98010199//98010197, where // denotes concatenation.
PROG
(Python)
from itertools import count, islice
from sympy import sqrt_mod
def A116275_gen(): # generator of terms
for j in count(0):
b = 10**j
a = b*10+1
for k in sorted(sqrt_mod(2, a, all_roots=True)):
if a*(b+3) <= k**2-2 < a*(a+2):
yield k-2
A116275_list = list(islice(A116275_gen(), 30)) # Chai Wah Wu, Feb 19 2024
CROSSREFS
Sequence in context: A031625 A046506 A116242 * A116295 A115427 A236614
KEYWORD
nonn,base
AUTHOR
Giovanni Resta, Feb 06 2006
EXTENSIONS
a(16)-a(18) 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 September 3 16:39 EDT 2024. Contains 375672 sequences. (Running on oeis4.)