cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A173501 a(1) = 2, a(2) = 3, a(n) = 6^(2^(n-3)) for n >= 3.

This page as a plain text file.
%I A173501 #24 Mar 20 2024 15:40:46
%S A173501 2,3,6,36,1296,1679616,2821109907456,7958661109946400884391936,
%T A173501 63340286662973277706162286946811886609896461828096
%N A173501 a(1) = 2, a(2) = 3, a(n) = 6^(2^(n-3)) for n >= 3.
%C A173501 Except for first three terms, a(n) = (a(n-1))^2.
%C A173501 Essentially the same as A165424. - _R. J. Mathar_, Feb 21 2010
%H A173501 G. C. Greubel, <a href="/A173501/b173501.txt">Table of n, a(n) for n = 1..13</a>
%F A173501 a(n) = Product_{i=1..n-1} a(i) with a(1) = 2 and a(2) = 3.
%F A173501 a(n) = 6^(2^(n-3)) = A000400(A000079(n-3)) for n>2.
%t A173501 Table[If[n<3, n+1, 6^(2^(n-3))], {n,10}] (* _G. C. Greubel_, Apr 25 2021 *)
%o A173501 (SageMath) [2,3]+[6^(2^(n-3)) for n in (3..10)] # _G. C. Greubel_, Apr 25 2021
%o A173501 (PARI) a(n) = if(n<=2, n+1, 6^(2^(n-3))) \\ _Felix Fröhlich_, Apr 25 2021
%Y A173501 Cf. A000079, A000400, A165424.
%K A173501 nonn
%O A173501 1,1
%A A173501 _Giovanni Teofilatto_, Feb 20 2010
%E A173501 Definition corrected by _Glenn Tesler_, Aug 19 2017