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

A231290
Numbers n dividing u(n), where the Lucas sequence is defined u(i) = u(i-1) - 5*u(i-2) with initial conditions u(0)=0, u(1)=1.
0
1, 12, 19, 24, 36, 48, 72, 84, 96, 108, 144, 168, 192, 216, 228, 252, 288, 324, 336, 361, 384, 432, 456, 504, 576, 588, 648, 672, 684, 744, 756, 768, 816, 864, 912, 972, 1008, 1092, 1152, 1176, 1296, 1344, 1368, 1488, 1512, 1536, 1596, 1632, 1728, 1764
OFFSET
0,2
COMMENTS
Contains every nonnegative power of 19. All terms that are not a power of 19 are multiples of 12.
LINKS
C. Smyth, The terms in Lucas sequences divisible by their indices, Journal of Integer Sequences, Vol.13 (2010), Article 10.2.4.
MATHEMATICA
nn = 3000; s = LinearRecurrence[{1, -5}, {1, 1}, nn]; t = {}; Do[If[Mod[s[[n]], n] == 0, AppendTo[t, n]], {n, nn}]; t (* T. D. Noe, Nov 08 2013 *)
CROSSREFS
Cf. A001029 (powers of 19 (subsequence)).
Sequence in context: A107911 A143800 A344444 * A003335 A030609 A053752
KEYWORD
nonn
AUTHOR
Thomas M. Bridge, Nov 06 2013
STATUS
approved