The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A228440 Numbers n dividing u(n), where the Lucas sequence is defined u(i) = u(i-1) - 3*u(i-2) with initial conditions u(0)=0, u(1)=1. 1
1, 11, 121, 253, 1331, 2783, 5819, 11891, 14641, 29161, 30613, 64009, 130801, 133837, 161051, 273493, 320771, 336743, 558877, 640343, 670703, 704099, 895873, 1438811, 1472207, 1771561, 3008423, 3078251, 3528481, 3544453, 3704173, 6147647, 6290339, 7027801 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Since the absolute value of the discriminant of the characteristic polynomial is prime (=11), the sequence contains every nonnegative integer power of 11 (A001020 is subsequence). Other terms are formed on multiplication of 11^k by sporadic primes.
LINKS
C. Smyth, The Terms in Lucas Sequences Divisible by their Indices, Journal of Integer Sequences, Vol.13 (2010), Article 10.2.4
Wikipedia, Lucas sequence
EXAMPLE
u(1)=1 and u(11)=253. Clearly n divides u(n) for these terms.
MATHEMATICA
nn = 10000; s = LinearRecurrence[{1, -3}, {1, 1}, nn]; t = {}; Do[
If[Mod[s[[n]], n] == 0, AppendTo[t, n]], {n, nn}]; t (* T. D. Noe, Nov 06 2013 *)
CROSSREFS
Cf. A214733 (Lucas sequence u(n) ignoring sign).
Cf. A001020 (powers of 11).
Sequence in context: A084969 A045592 A045595 * A015958 A014951 A223223
KEYWORD
nonn
AUTHOR
Thomas M. Bridge, Nov 02 2013
EXTENSIONS
a(27)-a(34) from Lars Blomberg, Feb 15 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 4 10:10 EDT 2024. Contains 373092 sequences. (Running on oeis4.)