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!)
A137494 Fibonacci numbers where no digit is a prime. 0
0, 1, 1, 8, 89, 144, 610, 4181, 10946, 196418 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
No more terms up to Fibonacci[10000). [From Harvey P. Dale, Oct 10 2011]
LINKS
EXAMPLE
196418 is 27th Fibonacci number in which every digit is not a prime.
MAPLE
ap := proc(n) local i, j, st, st_mn, ans, stevec; ans := [ ]: for i from 0 to n do st := combinat[fibonacci](i): st_mn := convert(convert(st, base, 10), set): stevec := 0: for j from 1 to nops(st_mn) do if (member(op(j, st_mn), {0, 1, 4, 6, 8, 9}) = true) then stevec := stevec + 1: fi od; if (stevec = nops(st_mn)) then ans:=[ op(ans), st ]: fi od; RETURN(ans): end: ap(100000);
MATHEMATICA
Select[Fibonacci[Range[0, 10000]], Union[PrimeQ[IntegerDigits[#]]] =={False}&] (* Harvey P. Dale, Oct 10 2011 *)
CROSSREFS
Sequence in context: A137144 A107677 A084005 * A068498 A061000 A240457
KEYWORD
nonn,base
AUTHOR
Jani Melik, Apr 22 2008
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 April 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)