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.

A228916 Indices of primes in sequence A108300.

Original entry on oeis.org

1, 3, 9, 15, 39, 225, 231, 363, 687, 1299, 1335, 1809, 2367, 12735
Offset: 1

Views

Author

Vaclav Kotesovec, Sep 08 2013

Keywords

Comments

Conjecture: for n>1 a(n) is a multiple of 3.
The indices greater than 363 yield probable primes. - Vaclav Kotesovec, Oct 28 2013
Next term > 100000. - Tyler Busby, Mar 29 2024

Crossrefs

Programs

  • Mathematica
    seq=RecurrenceTable[{a[n]==3*a[n-1]+a[n-2],a[0]==1,a[1]==5},a,{n,1,1000}]; Select[Range[1000],PrimeQ[seq[[#]]]&]