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.

A272439 Sum of positive divisors of A000032(n).

Original entry on oeis.org

3, 1, 4, 7, 8, 12, 39, 30, 48, 140, 168, 200, 576, 522, 1128, 2688, 2208, 3572, 12960, 9350, 17296, 44520, 54208, 64680, 158976, 186048, 361928, 809200, 826728, 1169400, 4131036, 3010350, 4876416, 13862800, 17256768, 23639040, 59720832, 54018522, 116538408, 251395200, 233917632, 370248452, 1319232096
Offset: 0

Views

Author

Altug Alkan, Apr 29 2016

Keywords

Examples

			a(2) = 4 because A000032(2) = 3 and A000203(3) = 4.
		

Crossrefs

Programs

  • Mathematica
    DivisorSigma[1, LucasL@ Range[0, 42]] (* Michael De Vlieger, Apr 29 2016 *)
  • PARI
    a(n) = sigma(fibonacci(n-1) + fibonacci(n+1));

Formula

a(n) = A000203(A000032(n)).