cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A113474 a(n) = a(floor(n/2)) + floor(n/2) with a(1) = 1.

Original entry on oeis.org

1, 2, 2, 4, 4, 5, 5, 8, 8, 9, 9, 11, 11, 12, 12, 16, 16, 17, 17, 19, 19, 20, 20, 23, 23, 24, 24, 26, 26, 27, 27, 32, 32, 33, 33, 35, 35, 36, 36, 39, 39, 40, 40, 42, 42, 43, 43, 47, 47, 48, 48, 50, 50, 51, 51, 54, 54, 55, 55, 57, 57, 58, 58, 64, 64, 65, 65, 67, 67, 68, 68, 71, 71
Offset: 1

Views

Author

Zak Seidov, Jan 08 2006

Keywords

Comments

a(2^n) = 2^n, in other cases a(n) < n. Except for the initial 1 all entries are repeated. Apparently no simple formula is known for a(n).
Taking every other term seems to give A101925. - Dominick Cancilla, Aug 03 2010
1/a(n) is the probability that a randomly chosen divisor of n! is odd. This is because the product n! contains the prime factor 2 a total of a(n) - 1 times (cf. A011371) and thus the prime factor 2 can occur in a divisor of n! a total of a(n) times, ranging between 0 and a(n) - 1 times. - Martin Renner, Dec 28 2022

Crossrefs

Programs

Formula

From Paul Barry, Aug 27 2006: (Start)
a(n) = ( Sum_{k=0..n} floor(n/2^k) ) - n + 1.
a(n) = 2 + Sum_{k=0..n} ( floor(n/2^k)-1 ).
a(n) = A005187(n) - n + 1. (End)
a(n) = n + O(log n). - Charles R Greathouse IV, Mar 12 2017
a(n) = A011371(n) + 1 for n > 0. - Martin Renner, Dec 28 2022