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.

A190757 Lucas Aurifeuillian primitive part A of Lucas(10*n - 5).

Original entry on oeis.org

1, 1, 101, 71, 181, 39161, 24571, 12301, 1158551, 87382901, 21211, 373270451, 28143378001, 32414581, 1322154751061, 9062194370461, 1550853481, 2819407321151, 265272771839851, 2366632711, 137083914639998701, 85417012034751151, 3455782010101
Offset: 1

Views

Author

Arkadiusz Wesolowski, Dec 29 2012

Keywords

Crossrefs

Programs

  • Mathematica
    lst = {1}; n = 23; Do[f = LucasL[k]; Do[f = f/GCD[f, lst[[d]]], {d, Most@Divisors[k]}]; AppendTo[lst, f], {k, 2, 10*n - 5}]; Table[GCD[lst[[5*k]], 5*Fibonacci[k]*(Fibonacci[k] - 1) + 1], {k, 1, 2*n - 1, 2}]

Formula

a(n) = GCD(A061447(10*n-5), A027941(n-1)*A106729(n-1) + 1).