A273692
a(n) is the denominator of 2*O(n+1) - O(n+2) where O(n) = n/2^n, the n-th Oresme number.
Original entry on oeis.org
2, 8, 2, 32, 32, 128, 64, 512, 512, 2048, 128, 8192, 8192, 32768, 16384, 131072, 131072, 524288, 131072, 2097152, 2097152, 8388608, 4194304, 33554432, 33554432, 134217728, 16777216, 536870912, 536870912, 2147483648, 1073741824, 8589934592, 8589934592, 34359738368
Offset: 0
- M. R. Bacon and C. K. Cook, Some properties of Oresme numbers and convolutions ..., Fib. Q., 62:3 (2024), 233-240.
A273893
Denominator of n/3^n.
Original entry on oeis.org
1, 3, 9, 9, 81, 243, 243, 2187, 6561, 2187, 59049, 177147, 177147, 1594323, 4782969, 4782969, 43046721, 129140163, 43046721, 1162261467, 3486784401, 3486784401, 31381059609, 94143178827, 94143178827, 847288609443, 2541865828329, 282429536481, 22876792454961
Offset: 0
A279635
Denominator of (0 followed by A005126(n)= 2, 4, 7, ...)/2^n, a sequence corresponding to A271573.
Original entry on oeis.org
1, 1, 1, 8, 4, 32, 32, 128, 32, 512, 512, 2048, 1024, 8192, 8192, 32768, 4096, 131072, 131072, 524288, 262144, 2097152, 2097152, 8388608, 2097152, 33554432, 33554432, 134217728, 67108864, 536870912, 536870912, 2147483648, 134217728, 8589934592, 8589934592, 34359738368, 17179869184, 137438953472, 137438953472, 549755813888, 137438953472
Offset: 0
-
a[0] = 1; a[n_] := Denominator[(2^(n-1)+n)/2^n]; Table[a[n], {n, 0, 40}]
(* or *)
a[0] = 1; a[n_] := 2^(n-IntegerExponent[2^(n-1)+n, 2]); Table[a[n], {n, 0, 40}]
A273153
a(n) = Numerator of (0 followed by 1's) - n/2^n.
Original entry on oeis.org
0, 1, 1, 5, 3, 27, 29, 121, 31, 503, 507, 2037, 1021, 8179, 8185, 32753, 4095, 131055, 131063, 524269, 262139, 2097131, 2097141, 8388585, 2097149, 33554407, 33554419, 134217701, 67108857, 536870883, 536870897, 2147483617, 134217727, 8589934559, 8589934575, 34359738333
Offset: 0
Array of differences of fractions (characteristic aspect of an autosequence of the first kind):
0, 1/2, 1/2, 5/8, 3/4, ...
1/2, 0, 1/8, 1/8, 3/32, ...
-1/2, 1/8, 0, -1/32, -1/32, ...
5/8, -1/8, -1/32, 0, 1/128, ...
-3/4, 3/32, 1/32, 1/128, 0, ...
...
-
{0}~Join~Array[Numerator@ Abs[1 - Binomial[0, # - 1] - #/2^#] &, 30] (* Michael De Vlieger, May 17 2016 *)
Comments