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.

A233190 Indices of primes in the tribonacci-like sequence, A214899.

Original entry on oeis.org

0, 2, 3, 9, 13, 27, 35, 39, 87, 95, 97, 99, 113, 131, 233, 971, 3851, 5637, 6553, 106099
Offset: 1

Views

Author

Robert Price, Dec 05 2013

Keywords

Comments

a(21) > 2*10^5.

Crossrefs

Programs

  • Mathematica
    a={2,1,2};Print[1],Print[2];For[n=3,n<=1000,n++,sum=Plus@@a;If[PrimeQ[sum],Print[n]];a=RotateLeft[a]; a[[3]]=sum]