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.

A374206 The 2-adic valuation of A113177(n), where A113177 is fully additive with a(p) = Fibonacci(p).

Original entry on oeis.org

0, 1, 1, 0, 0, 0, 0, 2, 1, 0, 2, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 3, 0, 0, 0, 1, 1, 1, 0, 1, 0, 3, 0, 4, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 1, 0, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 2, 0, 0, 3, 1, 0, 0, 1, 1, 0, 2, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 2, 0, 6, 0, 2, 2, 1, 0, 3
Offset: 2

Views

Author

Antti Karttunen, Jul 01 2024

Keywords

Crossrefs

Cf. A007814, A113177, A373586 (gives the indices of nonzero terms here, after its initial 1), A373587 (gives the indices of 0's).

Programs

  • PARI
    A113177(n) = if(n<=1, 0, my(f=factor(n)); sum(i=1, #f~, f[i, 2]*fibonacci(f[i,1])));
    A374206(n) = valuation(A113177(n), 2);

Formula

a(n) = A007814(A113177(n)).