[go: up one dir, main page]

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”).

A068093
Smallest n-digit triangular number.
6
1, 10, 105, 1035, 10011, 100128, 1000405, 10001628, 100005153, 1000006281, 10000020331, 100000404505, 1000001326005, 10000002437316, 100000012392316, 1000000042485480, 10000000037150046, 100000000000018810, 1000000000179470703, 10000000002237948990
OFFSET
1,2
FORMULA
Triangular number with index given by A068092.
MATHEMATICA
triInverse[n_] := Floor[(Sqrt[1 + 8*n] - 1)/2]; tri[n_] := n*(n+1)/2; Table[tri[1 + triInverse[10^(n-1) - 1]], {n, 20}] (* T. D. Noe, Jul 27 2012 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Feb 19 2002
EXTENSIONS
More terms from Sascha Kurz, Mar 06 2002
STATUS
approved