Displaying 1-7 of 7 results found.
page
1
1, 3, 5, 6, 8, 11, 13, 15, 17, 19, 20, 22, 24, 27, 29, 30, 32, 35, 37, 38, 40, 42, 45, 47, 49, 51, 52, 54, 56, 59, 61, 63, 65, 67, 69, 70, 72, 74, 77, 79, 81, 83, 85, 86, 88, 90, 93, 94, 96, 99, 101, 102, 104, 106, 108, 111, 113, 115, 116, 118, 120, 123, 125
COMMENTS
a(n) = 2*n + A212412(n): concatenation of binary representation of n and the parity of its curling number;
A212444 gives iterations starting from 0.
PROG
(Haskell)
a212439 n = 2 * n + a212412 n
Numbers with even curling numbers of their binary representations, cf. A181935.
+20
4
3, 4, 10, 11, 12, 15, 16, 19, 20, 21, 26, 27, 28, 35, 36, 37, 43, 44, 45, 47, 48, 51, 52, 53, 54, 58, 59, 60, 63, 64, 67, 68, 69, 73, 74, 75, 76, 79, 80, 82, 83, 84, 90, 91, 92, 99, 100, 101, 107, 108, 109, 111, 112, 115, 116, 117, 118, 122, 123, 124, 131
PROG
(Haskell)
a212440 n = a212440_list !! (n-1)
a212440_list = filter (even . a181935) [0..]
Numbers with odd curling numbers of their binary representations, cf. A181935.
+20
4
0, 1, 2, 5, 6, 7, 8, 9, 13, 14, 17, 18, 22, 23, 24, 25, 29, 30, 31, 32, 33, 34, 38, 39, 40, 41, 42, 46, 49, 50, 55, 56, 57, 61, 62, 65, 66, 70, 71, 72, 77, 78, 81, 85, 86, 87, 88, 89, 93, 94, 95, 96, 97, 98, 102, 103, 104, 105, 106, 110, 113, 114, 119, 120
PROG
(Haskell)
a212441 n = a212441_list !! (n-1)
a212441_list = filter (odd . a181935) [0..]
Parity of curling number of binary expansion of n.
+10
5
1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1
PROG
(Haskell)
a212412 = (`mod` 2) . a181935
Denominator of fractional curling number of binary expansion of n.
+10
4
1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 4, 3, 1, 1, 2, 3, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 5, 2, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 2, 1, 1, 4, 3, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 6, 2, 1, 1, 1, 5, 1, 1, 3, 2, 1, 1, 3, 5, 1
COMMENTS
See A224762 for definition and Maple program.
EXAMPLE
1, 1, 1, 2, 2, 3/2, 1, 3, 3, 4/3, 2, 2, 2, 3/2, 1, 4, 4, 5/4, 5/3, 2, 2, 5/2, 5/3, 3, 3, 4/3, 2, 2, 2, 3/2, 1, 5, 5, 6/5, 3/2, 2, 2, 2, 3/2, 3, 3, 5/3, 3, 2, 2, 2, 3/2, 4, 4, 5/4, 5/3, 2, 2, 5/2, 2, 3, 3, 4/3, 2, 2, 2, 3/2, 1, 6, 6, 7/6, 3/2, 2, ...
For example, 18 = 10010 in binary has fractional curling number 5/4.
0, 1, 3, 6, 13, 27, 54, 108, 216, 433, 867, 1734, 3469, 6939, 13878, 27756, 55512, 111025, 222050, 444101, 888202, 1776404, 3552808, 7105617, 14211235, 28422470, 56844941, 113689883, 227379766, 454759532, 909519064, 1819038129, 3638076259, 7276152518
COMMENTS
2*a(n) <= a(n+1) <= 2*a(n) + 1.
PROG
(Haskell)
a212444 n = a212444_list !! n
a212444_list = iterate a212439 0
Numerator of fractional curling number of binary expansion of n.
+10
3
1, 1, 1, 2, 2, 3, 1, 3, 3, 4, 2, 2, 2, 3, 1, 4, 4, 5, 5, 2, 2, 5, 5, 3, 3, 4, 2, 2, 2, 3, 1, 5, 5, 6, 3, 2, 2, 2, 3, 3, 3, 5, 3, 2, 2, 2, 3, 4, 4, 5, 5, 2, 2, 5, 2, 3, 3, 4, 2, 2, 2, 3, 1, 6, 6, 7, 3, 2, 2, 2, 7, 3, 3, 7, 5, 2, 2, 5, 7, 4
COMMENTS
See A224762 for definition and Maple program.
EXAMPLE
1, 1, 1, 2, 2, 3/2, 1, 3, 3, 4/3, 2, 2, 2, 3/2, 1, 4, 4, 5/4, 5/3, 2, 2, 5/2, 5/3, 3, 3, 4/3, 2, 2, 2, 3/2, 1, 5, 5, 6/5, 3/2, 2, 2, 2, 3/2, 3, 3, 5/3, 3, 2, 2, 2, 3/2, 4, 4, 5/4, 5/3, 2, 2, 5/2, 2, 3, 3, 4/3, 2, 2, 2, 3/2, 1, 6, 6, 7/6, 3/2, 2, ...
For example, 18 = 10010 in binary has fractional curling number 5/4.
Search completed in 0.059 seconds
|