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.

Showing 1-2 of 2 results.

A193495 Number of odd divisors of Lucas(n), Lucas numbers beginning at 2.

Original entry on oeis.org

1, 1, 2, 1, 2, 2, 3, 2, 2, 2, 4, 2, 4, 2, 4, 4, 2, 2, 8, 2, 4, 4, 8, 4, 4, 8, 4, 4, 6, 4, 12, 2, 4, 4, 8, 16, 8, 2, 4, 8, 8, 2, 24, 4, 16, 32, 8, 2, 8, 4, 16, 8, 8, 2, 20, 24, 4, 8, 8, 8, 32, 2, 4, 32, 4, 32, 24, 4, 4, 16, 16, 2, 8, 4, 8, 64, 4, 16, 12, 2, 4
Offset: 0

Views

Author

Jonathan Vos Post, Jul 28 2011

Keywords

Comments

This is to A193292 as A000032 Lucas numbers (beginning at 2) is to A000045 Fibonacci numbers.

Examples

			a(18) = 8 because L(18) = 5778 = 2 * 3^3 * 107 whose odd divisors are 8 in number: {1, 3, 9, 27, 107, 321, 963, 2889}. a(n) = 2 iff n is in A001606 (Indices of prime Lucas numbers).
		

Crossrefs

Programs

Formula

a(n) = A001227(A000032(n)).

A193293 Sum of odd divisors of Fibonacci(n).

Original entry on oeis.org

1, 1, 1, 4, 6, 1, 14, 32, 18, 72, 90, 13, 234, 420, 372, 1536, 1598, 360, 4332, 12096, 5908, 18000, 28658, 2496, 93062, 122148, 106920, 473760, 514230, 142848, 1349244, 3391488, 1782180, 5708056, 11924808, 1555200, 24664200, 40504200, 31758948, 209212416
Offset: 1

Views

Author

Michel Lagneau, Jul 21 2011

Keywords

Examples

			a(9) = 18 because Fibonacci(9) = 34 = 2*17 and the sum of the odd divisors
  {1, 17}= 18.
		

Crossrefs

Programs

  • Mathematica
    Table[Total[Select[Divisors[Fibonacci[n]], OddQ[ # ]&]], {n, 75}]
  • PARI
    a(n)=n=fibonacci(n);sigma(n>>valuation(n,2)) \\ Charles R Greathouse IV, Jul 31 2011

Formula

a(n) = A000593(A000045(n)). - Michel Marcus, Jan 14 2014
Showing 1-2 of 2 results.