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!)
A165781 a(n) = (2^A002326(n)-1)/(2*n+1). 7
1, 1, 3, 1, 7, 93, 315, 1, 15, 13797, 3, 89, 41943, 9709, 9256395, 1, 31, 117, 1857283155, 105, 25575, 381, 91, 178481, 42799, 5, 84973577874915, 19065, 4599, 4885260612740877, 18900352534538475, 1, 63, 1101298153654301589 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(n) = 1 <=> n is in A000225 <=> n = 2^k - 1 with k = 0, 1, 2, ... - M. F. Hasler, Sep 20 2017
LINKS
MAPLE
A002326 := proc(n) if n = 0 then 1 ; else numtheory[order](2, 2*n+1) ; end if ; end proc:
A165781 := proc(n) (2^A002326(n)-1)/(2*n+1) ; end proc:
seq(A165781(n), n=0..60) ; # R. J. Mathar, Nov 16 2009
MATHEMATICA
a[n_] := (2^MultiplicativeOrder[2, 2n+1]-1)/(2n+1);
a /@ Range[0, 40] (* Jean-François Alcover, Jun 04 2020 *)
PROG
(PARI) a(n)=(2^znorder(Mod(2, n=2*n+1))-1)/n \\ M. F. Hasler, Sep 20 2017
CROSSREFS
Sequence in context: A346784 A060487 A285020 * A152095 A096797 A084246
KEYWORD
easy,nonn
AUTHOR
Ctibor O. Zizka, Sep 26 2009
EXTENSIONS
Sign in definition and offset corrected by R. J. Mathar, Nov 16 2009
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 June 23 09:34 EDT 2024. Contains 373629 sequences. (Running on oeis4.)