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.

A235396 Indices of primes in the tribonacci-like sequence, A081172.

Original entry on oeis.org

3, 4, 5, 9, 12, 16, 24, 32, 101, 116, 245, 34553, 52517, 99245, 140197
Offset: 1

Views

Author

Robert Price, Jan 09 2014

Keywords

Comments

a(16) > 2*10^5.

Crossrefs

Programs

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