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!)
A113796 Numbers k such that k = T(x) + T(y) where T(m) is the m-th triangular number and k is concatenate(x, y) in base 10. 1

%I #28 Jan 22 2022 19:13:09

%S 190,191,19900,19901,90415,585910,1201545,1414910,1501726,1909415,

%T 1999000,1999001,2442196,7003676,7693846,14745226,28296970,30307171,

%U 42009156,47748526,61549231,63249300,78049756,82749850,84559880,115449880,117259850,121959756

%N Numbers k such that k = T(x) + T(y) where T(m) is the m-th triangular number and k is concatenate(x, y) in base 10.

%C Contains (2*10^i - 1)*10^i and (2*10^i - 1)*10^i + 1 for all i >= 1. - _Michael S. Branicky_, Jan 22 2022

%H David A. Corneth, <a href="/A113796/b113796.txt">Table of n, a(n) for n = 1..56</a> (first 41 terms from Michael S. Branicky)

%e 90415 = T(90) + T(415).

%t lst = {}; t[n_] := n(n + 1)/2; Do[p=10; While[n > p, If[t[Mod[n, p]] + t[Floor[n/p]] == n, AppendTo[lst, n]]; p*= 10], {n, 10^6}]; lst

%o (Python)

%o def T(n): return n*(n+1)//2

%o def ok(n):

%o if n < 10: return False

%o s = str(n)

%o splits = ((int(s[:i]), int(s[i:])) for i in range(1, len(s)))

%o return any(n == T(x) + T(y) for x, y in splits)

%o print([k for k in range(10**6) if ok(k)]) # _Michael S. Branicky_, Jan 22 2022

%Y Cf. A000217.

%Y Subsequence of A020756.

%K nonn,base

%O 1,1

%A _Giovanni Resta_, Jan 21 2006

%E a(26)-a(28) from _Michael S. Branicky_, Jan 22 2022

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:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)