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

A068097
a(1) = 1; a(n+1) = smallest triangular numbers starting with a(n).
0
1, 10, 105, 10585, 105858525, 10585852585252500, 105858525852525008525250025000000, 10585852585252500852525002500000085252500250000002500000000000000
OFFSET
1,2
FORMULA
a(n+1) = floor((sqrt(8*10^floor(log(a(n))/log(10))*a(n)+1)+1)/2)*(floor((sqrt(8*10^floor(log(a(n))/log(10))*a(n)+1)+1)/2)+1)/2. - Benoit Cloitre, Feb 25 2002
PROG
(PARI) /* with 1000 significant digits : */ a(1)=1, a(2)=10 and for n>2 s=10; for(i=1, 10, s=floor((sqrt(8*10^floor(log(s)/log(10))*s+1)+1)/2)*(floor((sqrt(8*10^floor(log(s)/log(10))*s+1)+1)/2)+1)/2; print1(s, ", "); );
CROSSREFS
Sequence in context: A087599 A337826 A226360 * A190956 A142987 A078192
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Feb 19 2002
EXTENSIONS
More terms from Vladeta Jovovic, Feb 24 2002
More terms from Benoit Cloitre, Mar 07 2002
STATUS
approved