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.

A140353 a(n) = prime(n) + 9.

Original entry on oeis.org

11, 12, 14, 16, 20, 22, 26, 28, 32, 38, 40, 46, 50, 52, 56, 62, 68, 70, 76, 80, 82, 88, 92, 98, 106, 110, 112, 116, 118, 122, 136, 140, 146, 148, 158, 160, 166, 172, 176, 182, 188, 190, 200, 202, 206, 208, 220, 232, 236, 238, 242, 248, 250, 260, 266, 272, 278, 280, 286
Offset: 1

Views

Author

Odimar Fabeny, May 30 2008

Keywords

Comments

a(n) = A000040(n) + 9 = A008864(n) + 8 = A052147(n) + 7 = A113395(n) + 6 = A175221(n) + 5 = A175222(n) + 4 = A139049(n) + 3 = A175223(n) + 2 = A175224(n) + 1 = A175225(n) - 1. - Jaroslav Krizek, Mar 06 2010

Crossrefs

Programs

  • GAP
    Filtered([1..300], k-> IsPrime(k) ) +9 # G. C. Greubel, May 20 2019
  • Magma
    [NthPrime(n)+9: n in [1..70]]; // G. C. Greubel, May 20 2019
    
  • Mathematica
    9 + Prime[Range[70]] (* G. C. Greubel, May 20 2019 *)
  • PARI
    A140353(n) = prime(n)+9
    
  • Sage
    [nth_prime(n) +9 for n in (1..70)] # G. C. Greubel, May 20 2019
    

Extensions

Edited by Michael B. Porter, Jan 28 2010