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!)
A244586 a(n) = n OR 4. 2
4, 5, 6, 7, 4, 5, 6, 7, 12, 13, 14, 15, 12, 13, 14, 15, 20, 21, 22, 23, 20, 21, 22, 23, 28, 29, 30, 31, 28, 29, 30, 31, 36, 37, 38, 39, 36, 37, 38, 39, 44, 45, 46, 47, 44, 45, 46, 47, 52, 53, 54, 55, 52, 53, 54, 55, 60, 61, 62, 63, 60, 61, 62, 63 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(n) = n if n is congruent to (4, 5, 6, 7) mod 8. In general, (n OR 2^k) has the closed form n + 2^k * floor( ( (n+2^k) mod 2^(k+1) )/2^k ).
LINKS
FORMULA
a(n) = (n+4) - (n AND 4).
a(n) = (n XOR 4) + (n AND 4).
a(n) = n + 4*floor(((n+4) mod 8)/4).
From Bruno Berselli, Jul 01 2014: (Start)
a(n) = 2 + n + 2*(-1)^floor(n/4).
G.f.: (4 - 3*x + x^5)/((1 - x)^2*(1 + x^4)). (End)
Sum_{n>=0} (-1)^n/a(n) = (2*sqrt(2)-1)*Pi/8 - 3*log(2)/4. - Amiram Eldar, Aug 07 2023
EXAMPLE
a(10) = 14 because 10 in binary is 1010 and 4 is 0100, and 1010 OR 0100 = 1110, which is 14 in decimal.
a(11) = 15 because 11 in binary is 1011 and 4 is 0100, and 1011 OR 0100 = 1111, which is 15 in decimal.
a(12) = 12 because 12 in binary is 1100 and 4 is 0100, and 1100 OR 0100 = 1100, which is 12 in decimal.
MAPLE
with(Bits): seq(Or(n, 4), n = 0..60);
MATHEMATICA
Table[BitOr[n, 4], {n, 0, 63}] (* Alonso del Arte, Jul 01 2014 *)
PROG
(Magma) [BitwiseOr(n, 4): n in [0..70]]; // Bruno Berselli, Jul 01 2014
(Python)
def A244586(n): return n|4 # Chai Wah Wu, Jan 18 2023
CROSSREFS
Cf. A047566.
Cf. similar sequences listed in A244587.
Sequence in context: A004445 A174630 A163875 * A334501 A114546 A067471
KEYWORD
nonn,easy
AUTHOR
Gary Detlefs, Jun 30 2014
EXTENSIONS
Some terms corrected by Bruno Berselli, Jul 01 2014
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 13 07:22 EDT 2024. Contains 372498 sequences. (Running on oeis4.)