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.

A225904 Numerator of Sum_{k=1..n} 1/L(k) where L(n) is the n-th Lucas number (A000204).

Original entry on oeis.org

1, 4, 19, 145, 1679, 5191, 153311, 7286005, 69689327, 2869226821, 572447760301, 6593608277800, 3438637721790797, 966842075996112436, 119933240206586434591, 264753799412041684949165, 945570749875765527295137611, 303554979754466691916744807193
Offset: 1

Views

Author

Michel Lagneau, May 20 2013

Keywords

Examples

			1, 4/3, 19/12, 145/84, 1679/924, 5191/2772, ... = A225904/A225905.
		

Crossrefs

Programs

  • Mathematica
    Numerator[Table[Sum[1/LucasL[k], {k, 1, n}], {n, 1, 30}]]
    Numerator[Accumulate[1/LucasL[Range[20]]]] (* Harvey P. Dale, Sep 16 2016 *)