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!)
A246648 Numbers k such that 2*k + 1 divides 2^(k+1) - 1. 2
0, 1, 7, 127, 227, 647, 1351, 1907, 3239, 4607, 5219, 5975, 11447, 13159, 13919, 21527, 22049, 23759, 23939, 24839, 30959, 31283, 31583, 31967, 32767, 37223, 46091, 46511, 47267, 60479, 65663, 66527, 78539, 78599, 81727, 82799, 84311, 98405, 102671, 103967 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
These are the numbers k such that mean of the k-th row of the triangle at A027926 is an integer.
LINKS
EXAMPLE
The sum of the numbers row 7 of the triangular array at A027926 is 2^8 - 1 = 255, and the number of numbers in row 7 is 15, and 255/15 = 17; thus 7 is in this sequence, and 17 is in A246649.
MAPLE
filter:= k -> 2 &^ (k+1) - 1 mod (2*k+1) = 0:
select(filter, [$0..2*10^5]); # Robert Israel, Jan 10 2020
MATHEMATICA
z = 140000; u = Select[Range[0, z], IntegerQ[(2^(# + 1) - 1)/(2 # + 1)] &] (* A246648 *)
v = Table[(2^(u[[k]] + 1) - 1)/(2 u[[k]] + 1), {k, 1, 6}] (* A246649 *)
CROSSREFS
Sequence in context: A202798 A204248 A084940 * A308378 A139987 A061744
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Sep 01 2014
EXTENSIONS
Edited and offset changed by Robert Israel, Jan 10 2020
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 16 04:39 EDT 2024. Contains 372549 sequences. (Running on oeis4.)