OFFSET
0,2
COMMENTS
From M. F. Hasler, Apr 09 2025: (Start)
Original name: Next-to-largest factor of Lucas(n).
The offset 0 is coherent with the fact that the initial term is a starting value rather than a record value.
LINKS
Ron Knott, Lucas numbers.
Douglas S. McNeil, in reply to Robert Israel, A076697, SeqFan google group, April 9, 2025.
PROG
(PARI) A076697_first(n, m=0)=vector(n, i, i>1 || n=-1; until(m<m=max(A079451(n++), m), ); n) \\ M. F. Hasler, Apr 09 2025
(Python)
def A076697(n):
while len(terms) <= n: terms.append(next(i for i in range(terms[-1]+1, 1<<59)
return terms[n] # M. F. Hasler, Apr 10 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Shane Findley, Oct 25 2002
EXTENSIONS
New definition and data corrected and extended by M. F. Hasler, Apr 09 2025
STATUS
approved
