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.

A334142 Indices of twin primes.

Original entry on oeis.org

2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 17, 18, 20, 21, 26, 27, 28, 29, 33, 34, 35, 36, 41, 42, 43, 44, 45, 46, 49, 50, 52, 53, 57, 58, 60, 61, 64, 65, 69, 70, 81, 82, 83, 84, 89, 90, 98, 99, 104, 105, 109, 110, 113, 114, 116, 117, 120, 121, 140, 141, 142, 143, 144, 145, 148, 149
Offset: 1

Views

Author

Ilya Gutkovskiy, Apr 15 2020

Keywords

Crossrefs

Programs

  • Maple
    q:= n-> (p-> isprime(p-2) or isprime(p+2))(ithprime(n)):
    select(q, [$1..150])[];  # Alois P. Heinz, Apr 15 2020
  • Mathematica
    With[{p = PositionIndex[(#[[2]] - #[[1]] - 2) & /@ Partition[Prime[Range[150]], 2, 1]][0]}, Union[p, p + 1]] (* Amiram Eldar, Sep 06 2024 *)

Formula

a(n) = A000720(A001097(n)).
Set union of A029707 and A107770.