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!)
A116341 k times k+8 gives the concatenation of two numbers m and m+7. 6

%I #13 Feb 22 2024 15:10:44

%S 82,314,679,756,952,965,3205775326418807415637845823789043451,

%T 3230931606745075612526180113373983267,

%U 3750967203300732832735999247776048870,6249032796699267167264000752223951123,6769068393254924387473819886626016726,6794224673581192584362154176210956542

%N k times k+8 gives the concatenation of two numbers m and m+7.

%H Chai Wah Wu, <a href="/A116341/b116341.txt">Table of n, a(n) for n = 1..56</a>

%e 965 * 973 = 938//945, where // denotes concatenation, so 965 is a term.

%o (Python)

%o from itertools import count, islice

%o from sympy import sqrt_mod

%o def A116341_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(23,a,all_roots=True)):

%o if a*(b-7) <= k**2-23 < a*(a-8) and k>4:

%o yield k-4

%o A116341_list = list(islice(A116341_gen(),20)) # _Chai Wah Wu_, Feb 21 2024

%Y Cf. A116210, A116333, A116340, A116342, A116354.

%K nonn,base

%O 1,1

%A _Giovanni Resta_, Feb 06 2006

%E a(10)-a(12) from _Chai Wah Wu_, Feb 21 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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)