login
A068821
Triangular numbers such that both the number formed by the first floor((k+1)/2) digits and the remaining part (if any) are triangular numbers, where k is the number of digits.
1
1, 3, 6, 10, 36, 66, 136, 300, 378, 666, 2145, 3655, 10153, 21528, 66066, 78210, 91378, 190036, 210276, 378015, 406351, 630003, 666435, 741153, 946000, 990528, 1537381, 1710325, 3788128, 4652775, 9037626, 87787875
OFFSET
1,2
LINKS
EXAMPLE
210276 is a triangular number with k=6 digits and the numbers 210 and 276 are both triangular numbers.
MAPLE
filter:= proc(n) local k;
k:= ceil((1+ilog10(n))/2);
issqr(1+8*floor(n/10^k)) and issqr(1+8*(n mod 10^k))
end proc:
select(filter, [seq(i*(i+1)/2, i=1..20000)]); # Robert Israel, Aug 18 2019
CROSSREFS
Sequence in context: A151376 A066245 A356977 * A062100 A262242 A339783
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, Mar 08 2002
EXTENSIONS
More terms from Sascha Kurz, Mar 17 2002
STATUS
approved