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

A185097
a(1)=1; thereafter a(n+1) = T(8*a(n)), where T(i)=i*(i+1)/2 is the i-th triangular number.
2
1, 36, 41616, 55420693056, 98286503002057414584576, 309127573515950117423442905473334441338685531136
OFFSET
1,2
COMMENTS
All terms are square and triangular; a subsequence of A001110.
REFERENCES
C. Alsina and R. B. Nelson, Charming Proofs: A Journey into Elegant Mathematics, MAA, 2010. See p. 4.
FORMULA
a(n) = (1/8)*sinh(2^(n-2)*arccosh(17))^2. [Alexander R. Povolotsky, Aug 14 2011]
a(n+2) = 4*a(n+1)*(a(n+1)/(2*a(n))-1)^2, a(1)=1, a(2)=36. [Alexander R. Povolotsky, Aug 15 2011]
a(n) = A001110(2^(n-1)). - Ivan N. Ianakiev, Mar 11 2014
MAPLE
T:=n->n*(n+1)/2; t1:=[1]; for n from 1 to 7 do t1:= [op(t1), T(8*t1[nops(t1)])]; od: t1;
MATHEMATICA
NestList[(8#(8#+1))/2&, 1, 7] (* Harvey P. Dale, Jan 20 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 18 2011
STATUS
approved