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.

A309530 Number of power-of-two-divisors of sum of divisors of sum of divisors of powers of two: a(n) = A001511(A051027(A000079(n))).

Original entry on oeis.org

1, 3, 4, 4, 6, 4, 8, 5, 5, 10, 5, 6, 14, 12, 12, 6, 18, 10, 20, 11, 9, 9, 6, 8, 8, 18, 6, 15, 7, 16, 32, 7, 11, 22, 17, 14, 7, 24, 22, 13, 5, 13, 11, 12, 20, 10, 7, 11, 9, 16, 33, 22, 6, 10, 15, 17, 28, 12, 6, 20, 62, 36, 12, 9, 24, 16, 5, 26, 12, 26, 10, 18, 6, 12, 16, 28, 19, 26
Offset: 0

Views

Author

Juri-Stepan Gerasimov, Aug 06 2019

Keywords

Examples

			a(0) = A001511(A051027(A000079(0))) = A001511(A051027(A000079(2^0))) = A001511(A051027(1)) = A001511(1) = 1.
		

Crossrefs

Cf. A000043 (numbers m such that m - 1 divides a(m - 1) - 2), A000079, A001511, A051027, A090748.

Programs

  • Magma
    [Valuation(2*SumOfDivisors(SumOfDivisors(2^n)),2): n in [0..89]];
    
  • PARI
    a(n) = valuation(2*sigma(sigma(2^n)), 2); \\ Michel Marcus, Aug 06 2019
    
  • Python
    from sympy import divisor_sigma
    def A309530(n): return ((m:=int(divisor_sigma((1<Chai Wah Wu, Jul 13 2022

Formula

a(n) = A001511(A051027(A000079(n))).