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.
%I A167536 #16 Sep 08 2022 08:45:48 %S A167536 1,5,65,6305,42981185,1853015893884545, %T A167536 3433683820274065740584139537665, %U A167536 11790184577738583171520532579045597727214748217668409340885505 %N A167536 a(n) = 3^(2^n) - 2^(2^n). %F A167536 a(n)= A001047(2^n). %p A167536 A167536 := proc(n) 3^(2^n)-2^(2^n) ; end proc: seq(A167536(n),n=1..10) ; # _R. J. Mathar_, Nov 07 2009 %t A167536 a[n_]:= 2^n; Table[3^a[n] - 2^a[n], {n, 0, 10}] (* _G. C. Greubel_, Jun 14 2016 *) %t A167536 Table[3^(2^n) - 2^(2^n), {n, 0, 10}] (* _Vincenzo Librandi_, Jun 15 2016 *) %o A167536 (Magma) [3^(2^n)-2^(2^n): n in [0..10]]; // _Vincenzo Librandi_ Jun 15 2016 %Y A167536 Cf. A118004. %K A167536 nonn %O A167536 0,2 %A A167536 _Jamel Ghanouchi_, Nov 06 2009 %E A167536 Edited by _R. J. Mathar_, Nov 11 2009 %E A167536 Offset changed from 1 to 0 from _Vincenzo Librandi_, Jun 15 2016