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

A325448
Fibonacci numbers whose decimal expansion contains the digit 1.
0
1, 13, 21, 144, 610, 1597, 4181, 10946, 17711, 121393, 196418, 317811, 514229, 1346269, 2178309, 14930352, 24157817, 39088169, 102334155, 165580141, 267914296, 701408733, 1134903170, 1836311903, 2971215073, 12586269025, 20365011074, 32951280099
OFFSET
1,2
COMMENTS
Complement of A177195.
MATHEMATICA
Rest[Select[Fibonacci@Range@50, MemberQ[IntegerDigits[#], 1] &]]
PROG
(Magma) [ Fibonacci(n): n in [2..55] | 1 in Intseq(Fibonacci(n)) ];
(PARI) terms(n) = my(i=0); for(k=2, oo, my(fib=fibonacci(k), fibd=digits(fib)); if(setintersect(vecsort(fibd), vector(#fibd, x, 1)), print1(fib, ", "); i++); if(i>=n, break))
/* Print initial 30 terms as follows */
terms(30) \\ Felix Fröhlich, May 04 2019
CROSSREFS
Sequence in context: A147435 A269309 A203854 * A056523 A056512 A362098
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, May 03 2019
STATUS
approved