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.

A374124 a(n) = A113177(n) mod 360, where A113177 is fully additive with a(p) = Fibonacci(p).

Original entry on oeis.org

0, 1, 2, 2, 5, 3, 13, 3, 4, 6, 89, 4, 233, 14, 7, 4, 157, 5, 221, 7, 15, 90, 217, 5, 10, 234, 6, 15, 149, 8, 229, 5, 91, 158, 18, 6, 17, 222, 235, 8, 301, 16, 77, 91, 9, 218, 73, 6, 26, 11, 159, 235, 293, 7, 94, 16, 223, 150, 161, 9, 161, 230, 17, 6, 238, 92, 293, 159, 219, 19, 289, 7, 73, 18, 12, 223, 102, 236, 301
Offset: 1

Views

Author

Antti Karttunen, Jun 30 2024

Keywords

Crossrefs

Cf. A373585 (antiparity of terms), A373586 (indices of even terms), A373587 (of odd terms), A374052 (of multiples of 3).
Cf. also A372576, A374123, A374125.

Programs

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