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.

A280531 a(n) = A049501(A000142(n)).

Original entry on oeis.org

0, 0, 1, 2, 2, 4, 11, 16, 16, 25, 30, 64, 39, 83, 111, 139, 139, 165, 205, 242, 283, 320, 336, 474, 440, 395, 637, 655, 886, 842, 1019, 1159, 1159, 1153, 1327, 1366, 1328, 1243, 1487, 1756, 1623, 2362, 2394, 2274, 2487, 2642, 2907, 2843, 3211, 3049, 3736
Offset: 0

Views

Author

Indranil Ghosh, Jan 04 2017

Keywords

Comments

a(n) is the major index (1st definition) of n!.

Examples

			For n=4, A000142(n) = 24 and A049501(24) = 2. So a(n) = 2.
		

Crossrefs

Cf. A280062 (Major index (2nd definition) of n!).

Programs

  • Python
    import math
    def M(n):
        x=bin(int(n))[2:]
        s=0
        for i in range(1,len(x)):
            if x[i-1]=="1" and x[i]=="0":
                s+=i
        return s
    a=lambda n: M(math.factorial(n))