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”).

A205113
Least k such that n divides the k-th difference between distinct Lucas numbers.
2
1, 1, 2, 5, 7, 4, 9, 8, 20, 7, 14, 26, 17, 13, 12, 41, 11, 20, 44, 25, 42, 19, 22, 31, 18, 17, 113, 16, 27, 38, 119, 49, 46, 52, 42, 26, 68, 44, 48, 25, 54, 80, 24, 23, 59, 22, 35, 49, 47, 109, 71, 67, 58, 113, 63, 41, 132, 34, 87, 38
OFFSET
1,3
COMMENTS
The pairs of Lucas numbers are ordered as at A205112. For a guide to related sequences, see A204892.
LINKS
MAPLE
N:= 100: # to get terms before the first term > N*(N-1)/2
L:= proc(n) option remember; combinat:-fibonacci(n+1)+combinat:-fibonacci(n-1); end proc:
A205112:= [seq(seq(L(j)-L(i), i=1..j-1), j=2..N)]:
M:= N*(N-1)/2:
f:= proc(n) local k;
for k from 1 to M do if A205112[k] mod n = 0 then return k fi od;
-1
end proc:
R:= NULL:
for n from 1 do
v:= f(n);
if v = -1 then break fi;
R:= R, v
od:
R; # Robert Israel, Feb 25 2024
MATHEMATICA
(See the program at A205114.)
CROSSREFS
Sequence in context: A200112 A146098 A296567 * A349047 A098486 A138320
KEYWORD
nonn,look
AUTHOR
Clark Kimberling, Jan 22 2012
STATUS
approved