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

A319230
Triple prime Fibonacci numbers: Fibonacci numbers f such that (1) f is prime, (2) f's index is prime, and (3) the sum of f's digits is prime.
1
2, 5, 89, 514229, 433494437, 2971215073, 3061719992484545030554313848083717208111285432353738497131674799321571238149015933442805665949
OFFSET
1,1
COMMENTS
a(8) = A000045(104911) has 21925 decimal digits. - Alois P. Heinz, Sep 17 2018
FORMULA
a(n) = A000045(A319393(n)).
EXAMPLE
514229 is prime; it is the 29th Fibonacci number and 29 is prime; and the sum of its digits is 23 and 23 is prime.
MATHEMATICA
Select[With[{nn=2000}, Pick[Fibonacci[Range[nn]], PrimeQ[Range[nn]]]], PrimeQ[#] && PrimeQ[ Total[ IntegerDigits[#]]]&]
CROSSREFS
Sequence in context: A023272 A057978 A093308 * A215797 A262325 A290871
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Sep 14 2018
STATUS
approved