cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A111331 Prime Fibonacci numbers whose digits in base 10 sum up to a prime.

Original entry on oeis.org

2, 3, 5, 89, 514229, 433494437, 2971215073, 3061719992484545030554313848083717208111285432353738497131674799321571238149015933442805665949
Offset: 1

Views

Author

Stefan Steinerberger, Nov 05 2005

Keywords

Comments

Fibonacci(104911) is the next (probable) prime whose digits sum to a prime. Thus the next term would be 21925 digits long. - Hans Havermann, Nov 06 2005

Examples

			514229 is a prime Fibonacci number and the sum of the digits 5 + 1 + 4 + 2 + 2 + 9 = 23 is also a prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Fibonacci[Range[1000]],PrimeQ[#]&&PrimeQ[Total[IntegerDigits[#]]]&] (* James C. McMahon, May 31 2024 *)