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.

A173420 Triangular numbers which are sums of 4 consecutive primes.

Original entry on oeis.org

36, 120, 780, 1596, 1830, 10440, 12090, 20706, 22578, 23436, 34716, 75466, 101926, 107880, 115440, 154290, 191890, 207690, 231540, 261726, 271216, 310866, 313236, 319600, 384126, 408156, 512578, 558096, 653796, 768180, 824970, 936396, 1094460
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [ t: n in [1..25000] | IsSquare(8*t+1) where t is &+[NthPrime(n+s): s in [0..3]] ]; // Bruno Berselli, Apr 28 2011
  • Mathematica
    Select[Table[Prime[n]+Prime[n+1]+Prime[n+2]+Prime[n+3],{n,2*8!}],IntegerQ[Sqrt[1+8# ]]&]
    Select[Total/@Partition[Prime[Range[50000]],4,1],OddQ[Sqrt[1+8#]]&] (* Harvey P. Dale, May 29 2021 *)