The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A110939 Triangular Kaprekar-like numbers: numbers k such that the base-10 representation of T(k) = k*(k+1)/2 is the concatenation of two numbers x and y such that x + y = k. 1
9, 10, 18, 19, 45, 55, 99, 100, 144, 154, 198, 199, 297, 703, 999, 1000, 1296, 1702, 1998, 1999, 2223, 2728, 4879, 4950, 5050, 5292, 7272, 7777, 9999, 10000, 12222, 12727, 14949, 15049, 17271, 17344, 17776, 19998, 19999, 22222, 38962, 77778 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
2223 is a member, since the 2223rd triangular number is 2471976 and 247 + 1976 = 2223.
MATHEMATICA
lst = {}; Do[t = n(n + 1)/2; p=10; While[t>p, If[Mod[t, p]+Floor[t/p]==n, AppendTo[lst, n]]; p*=10], {n, 200000}]; lst
Select[Range[10^5], Function[n, Total@ Boole@ Function[k, n == First@ # + Last@ # & /@ Map[FromDigits /@ TakeDrop[IntegerDigits@ k, #] &, Range[IntegerLength@ k - 1]]][n (n + 1)/2] > 0]] (* Michael De Vlieger, May 07 2016, Version 10.2 *)
CROSSREFS
Cf. A006886.
Sequence in context: A131417 A268135 A058369 * A260042 A141640 A231504
KEYWORD
base,nonn
AUTHOR
Giovanni Resta, Jan 21 2006
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 May 20 19:00 EDT 2024. Contains 372720 sequences. (Running on oeis4.)