login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

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 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A216488 Numbers k such that the last 9 digits of the k-th Lucas number are 1-9 pandigital. 1
3352, 3837, 7239, 18503, 19344, 22628, 29363, 30994, 37514, 47058, 48201, 50371, 51702, 51857, 53586, 55469, 56248, 56668, 60560, 65206, 70610, 72171, 76554, 78310, 78380, 82628, 82952, 82993, 93615, 99751, 101179, 104469, 105347, 105379, 106327, 113251, 114970, 116751, 117313 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
b:= proc(n) b(n):= `if`(n<2, 2-n, irem(b(n-1)+b(n-2), 10^9)) end:
q:= n-> is({convert(b(n), base, 10)[]}={$1..9}):
select(q, [$1..120000])[]; # Alois P. Heinz, Jul 04 2021
MATHEMATICA
Select[Range[39, 120000], Sort[Take[IntegerDigits[LucasL[#]], -9]] == {1, 2, 3, 4, 5, 6, 7, 8, 9} &] (* Tanya Khovanova, Jul 04 2021 *)
PROG
(Python)
def afind(limit):
bkm1, bk = 2, 1
for k in range(2, limit+1):
bkm1, bk = bk, bkm1 + bk
if set(str(bk)[-9:]) == set("123456789"): print(k, end=", ")
afind(10**6) # Michael S. Branicky, Jul 04 2021
CROSSREFS
Cf. A000032.
Cf. A112516 for Fibonacci numbers such that first 9 digits are 1-9 pandigital.
Cf. A112371 for Fibonacci numbers such that last 9 digits are 1-9 pandigital.
Sequence in context: A204880 A151601 A251817 * A203782 A206978 A206972
KEYWORD
nonn,base
AUTHOR
V. Raman, Sep 07 2012
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 December 2 13:39 EST 2023. Contains 367524 sequences. (Running on oeis4.)