The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A213244 Number of nonzero elements in GF(2^n) that are 5th powers. 7
1, 3, 7, 3, 31, 63, 127, 51, 511, 1023, 2047, 819, 8191, 16383, 32767, 13107, 131071, 262143, 524287, 209715, 2097151, 4194303, 8388607, 3355443, 33554431, 67108863, 134217727 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = M / GCD( M, 5 ) where M=2^n-1.
Conjectures from Colin Barker, Aug 23 2014: (Start)
a(n) = 17*a(n-4)-16*a(n-8).
G.f.: x*(8*x^6+12*x^5+14*x^4+3*x^3+7*x^2+3*x+1) / ((x-1)*(x+1)*(2*x-1)*(2*x+1)*(x^2+1)*(4*x^2+1)).
(End)
MAPLE
A213244:=n->(2^n-1)/gcd(2^n-1, 5): seq(A213244(n), n=1..40); # Wesley Ivan Hurt, Aug 24 2014
MATHEMATICA
Table[(2^n - 1)/GCD[2^n - 1, 5], {n, 50}] (* Vincenzo Librandi, Mar 16 2013 *)
PROG
(Magma) [(2^n - 1) / GCD (2^n - 1, 5): n in [1..40]]; // Vincenzo Librandi, Mar 16 2013
(PARI) a(n)=(2^n-1)/gcd(2^n-1, 5) \\ Edward Jiang, Sep 04 2014
CROSSREFS
Cf. A213243 (cubes), A213245 (7th powers), A213246 (9th powers), A213247 (11th powers), A213248 (13th powers).
Sequence in context: A366141 A049479 A125314 * A050393 A110778 A200129
KEYWORD
nonn
AUTHOR
Joerg Arndt, Jun 07 2012
STATUS
approved

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 May 20 12:27 EDT 2024. Contains 372712 sequences. (Running on oeis4.)