> For the complete documentation index, see [llms.txt](https://trizen.gitbook.io/sidef-lang/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://trizen.gitbook.io/sidef-lang/programming_tasks/f/first_9_prime_fibonacci_number.md).

# First 9 prime Fibonacci number

```ruby
say 12.by { .fib.is_prime }.map { .fib }
```

#### Output:

```
[2, 3, 5, 13, 89, 233, 1597, 28657, 514229, 433494437, 2971215073, 99194853094755497]
```
