login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A108241
Numbers n such that concatenating n and the sum of factorials of the digits of n produces a triangular number.
0
0, 3, 18, 122, 2111, 12442, 40850, 113347, 202343, 233506, 332600, 435405, 525544, 546233, 554161, 716795, 1000334, 1016217, 1142240, 1244630, 2240515, 2414603, 3103412, 3203757, 3400440, 3413651, 3424213, 3461244, 4430222, 5226150
OFFSET
1,2
EXAMPLE
18 is in the sequence because 1!+8! = 40321 and 1918*1919/2 = 1840321.
MATHEMATICA
ctnQ[n_]:=Module[{idn=IntegerDigits[n], c}, c=FromDigits[Join[idn, IntegerDigits[ Total[idn!]]]]; IntegerQ[(Sqrt[8c+1]-1)/2]]; Select[ Range[0, 5300000], ctnQ] (* Harvey P. Dale, Sep 20 2012 *)
CROSSREFS
Sequence in context: A355048 A074558 A074564 * A342710 A199421 A305869
KEYWORD
base,nonn
AUTHOR
Jason Earls, Jun 17 2005
STATUS
approved