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 A061286 #40 Aug 11 2020 09:52:53 %S A061286 2,4,16,64,1024,4096,65536,262144,4194304,268435456,1073741824, %T A061286 68719476736,1099511627776,4398046511104,70368744177664, %U A061286 4503599627370496,288230376151711744,1152921504606846976 %N A061286 Smallest integer for which the number of divisors is the n-th prime. %C A061286 Seems to be the same as "Even numbers with prime number of divisors" - _Jason Earls_, Jul 04 2001 %C A061286 Except for the first term, smallest number == 1 (mod prime(n)) having n divisors (by Fermat's little theorem). - _Amarnath Murthy_ and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Jun 20 2003 %H A061286 Karl V. Keller, Jr., <a href="/A061286/b061286.txt">Table of n, a(n) for n = 1..460</a> %H A061286 <a href="/index/Di#divseq">Index to divisibility sequences</a> %F A061286 a(n) = 2^(prime(n)-1) = 2^A006093(n). %F A061286 a(n) = A005179(prime(n)). - _R. J. Mathar_, Aug 09 2019 %F A061286 Sum_{n>=1} 1/a(n) = A119523. - _Amiram Eldar_, Aug 11 2020 %t A061286 Table[2^(p-1),{p,Table[Prime[n],{n,1,18}]}] (* _Geoffrey Critzer_, May 26 2013 *) %o A061286 (PARI) forstep(n=2,100000000,2,x=numdiv(n); if(isprime(x),print(n))) %o A061286 (PARI) a(n)=2^(prime(n)-1) \\ _Charles R Greathouse IV_, Apr 08 2012 %o A061286 (Python) %o A061286 from sympy import isprime, divisor_count as tau %o A061286 [2] + [2**(2*n) for n in range(1, 33) if isprime(tau(2**(2*n)))] # _Karl V. Keller, Jr._, Jul 10 2020 %Y A061286 Cf. A000005, A005179, A003680, A061283, A061286, A006093, A005097, A006254, A119523, A196202. %K A061286 nonn,easy %O A061286 1,1 %A A061286 _Labos Elemer_, May 22 2001