login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A190781
Lucas Aurifeuillian primitive part B of Lucas(10*n - 5).
2
11, 31, 151, 911, 541, 3641, 272611, 18451, 12760031, 7947701, 767131, 4106261531, 28144128251, 34379101, 120196353941, 823837075741, 51164521, 4215154433351, 2918000731816531, 73998076231, 12462174208709101, 939587136717207031, 3467131047901
OFFSET
1,1
LINKS
Arkadiusz Wesolowski, Table of n, a(n) for n = 1..250
John Brillhart, Peter L. Montgomery and Robert D. Silverman, Tables of Fibonacci and Lucas factorizations, Math. Comp. 50 (1988), pp. 251-260, S1.
C. K. Caldwell, "Top Twenty" page, Lucas Aurifeuillian primitive part
FORMULA
a(n) = GCD(A061447(10*n-5), A032908(n)*A106729(n-1) + 1).
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}]
CROSSREFS
Sequence in context: A181150 A094622 A193645 * A001604 A144727 A002535
KEYWORD
nonn
AUTHOR
STATUS
approved