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.

A061591 a(n) = 2^x, where x = p*(p-1)/2 and p is the n-th prime.

This page as a plain text file.
%I A061591 #13 Sep 03 2024 19:20:57
%S A061591 2,8,1024,2097152,36028797018963968,302231454903657293676544,
%T A061591 87112285931760246646623899502532662132736,
%U A061591 2993155353253689176481146537402947624255349848014848
%N A061591 a(n) = 2^x, where x = p*(p-1)/2 and p is the n-th prime.
%H A061591 Harry J. Smith, <a href="/A061591/b061591.txt">Table of n, a(n) for n = 1..22</a>
%t A061591 Table[2^((p(p-1))/2),{p,Prime[Range[10]]}] (* _Harvey P. Dale_, Sep 03 2024 *)
%o A061591 (PARI) { n=0; forprime (p=2, prime(22), write("b061591.txt", n++, " ", 2^(p*(p - 1)/2)) ) } \\ _Harry J. Smith_, Jul 25 2009
%Y A061591 Cf. A007955, A006308. The exponents x are in A008837.
%K A061591 nonn
%O A061591 1,1
%A A061591 _Labos Elemer_, May 22 2001
%E A061591 Offset changed from 2 to 1 by _Harry J. Smith_, Jul 25 2009