|
Search: id:A068092
|
|
|
| A068092 |
|
Index of smallest triangular number with n digits. |
|
+0 8
|
|
| 1, 4, 14, 45, 141, 447, 1414, 4472, 14142, 44721, 141421, 447214, 1414214, 4472136, 14142136, 44721360, 141421356, 447213595, 1414213562, 4472135955, 14142135624, 44721359550, 141421356237, 447213595500, 1414213562373
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
Look at the interleaving of the decimal expansion of the square roots of 2 and 20.
|
|
FORMULA
|
a(n) = b where b = floor[ 2*10^n] and if b(b+1)/2 < 10^n, then b = b+1.
a(n) = round((2*10^(n-1))^(1/2)). - Vladeta Jovovic (vladeta(AT)Eunet.yu), Mar 08 2004
|
|
EXAMPLE
|
a(4) = 45 as the T45 is 45*46/2 = 1035 while the T44 is 990.
|
|
MATHEMATICA
|
f[n_] := Block[{a = Floor[Sqrt[2*10^n]]}, If[a(a + 1)/2 < 10^n, a++ ]; Return[a]]; Table[ f[n], {n, 0, 30} ]
|
|
CROSSREFS
|
Cf. A002193, A010476, A068093, A068094, A095863, A095864, A095865, A095866.
Adjacent sequences: A068089 A068090 A068091 this_sequence A068093 A068094 A068095
Sequence in context: A108765 A005775 A094688 this_sequence A117916 A054449 A029868
|
|
KEYWORD
|
base,easy,nonn
|
|
AUTHOR
|
Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Feb 19 2002
|
|
EXTENSIONS
|
Edited and extended by Robert G. Wilson v (rgwv(AT)rgwv.com), Feb 21 2002
|
|
|
Search completed in 0.002 seconds
|