login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A317977 a(n) = A003010(n-2) mod (2^n - 1). 1

%I #24 Oct 09 2018 09:53:16

%S 1,0,14,0,23,0,149,205,95,1736,779,0,4193,20400,25439,0,221468,0,

%T 1036394,840107,1751891,6107895,5639594,8772568,66322529,60611448,

%U 99083624,458738443,989927528,0,3038229779,5238898821,393215,11960838285,27264928469,117093979072,274827575393,276971366821

%N a(n) = A003010(n-2) mod (2^n - 1).

%C For n > 2, the Mersenne number 2^n - 1 is a prime if and only if a(n) = 0. See comments in A003010.

%H Chai Wah Wu, <a href="/A317977/b317977.txt">Table of n, a(n) for n = 2..3322</a>

%F a(prime(n)) = A095847(n).

%o (PARI) a(n) = {my(pow = 2^n-1, res = Mod(4, pow)); for(i = 1, n-2, res = res^2 - 2); lift(res)}

%o first(n) = vector(n, i, a(i+1)) \\ _David A. Corneth_, Aug 12 2018

%o (Python)

%o def A317977(n):

%o m = 2**n-1

%o c = 4 % m

%o for _ in range(n-2):

%o c = (c**2-2) % m

%o return c # _Chai Wah Wu_, Oct 08 2018

%Y Cf. A000043, A000225, A000668, A003010, A095847.

%K nonn

%O 2,3

%A _Thomas Ordowski_, Aug 12 2018

%E More terms from _Michel Marcus_ and _David A. Corneth_, Aug 12 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 5 11:50 EDT 2024. Contains 375696 sequences. (Running on oeis4.)