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.

Showing 1-4 of 4 results.

A218207 Number of n-digit primes of the form (k-1)^2 + k^2.

Original entry on oeis.org

1, 3, 6, 16, 42, 107, 286, 764, 2124, 5917, 17250, 49818, 145429
Offset: 1

Views

Author

Martin Renner, Oct 23 2012

Keywords

Crossrefs

Programs

  • Mathematica
    n = 0; Table[cnt = 0; While[n++; p = 2*n^2 - 2*n + 1; p < 10^e, If[PrimeQ[p], cnt++]]; n--; cnt, {e, 10}] (* T. D. Noe, Oct 23 2012 *)

Formula

a(n) = A218208(n) - A218208(n-1)

A218210 Number of primes up to 10^n that are of the form (k-2)^2 + (k-1)^2 + k^2.

Original entry on oeis.org

2, 3, 6, 10, 22, 53, 139, 369, 1050, 2984, 8618, 24390
Offset: 1

Views

Author

Martin Renner, Oct 23 2012

Keywords

Comments

There are two primes < 10: 2 and 5.

Crossrefs

Programs

  • Mathematica
    n = -1; cnt = 0; Do[While[n++; p = 3*n^2 + 2; p < 10^e, If[PrimeQ[p], cnt++]]; n--; cnt, {e, 10}] (* T. D. Noe, Oct 23 2012 *)

Formula

a(n) = sum(A218209(k), k=1..n)

A218211 Number of n-digit primes that are the sum of six consecutive squares of nonnegative numbers.

Original entry on oeis.org

0, 0, 4, 10, 15, 49, 147, 407, 1084, 3010, 8756, 25145, 73424, 215375, 631828, 1870092, 5562131, 16584139, 49630873, 148917071, 448088250
Offset: 1

Views

Author

Martin Renner, Oct 23 2012

Keywords

Comments

These are the primes of the form 91 + 42*k + 6*k^2.

Crossrefs

Programs

  • Mathematica
    n = 0; Table[cnt = 0; While[n++; p = 91 + 42*n + 6*n^2; p < 10^e, If[PrimeQ[p], cnt++]]; n--; cnt, {e, 14}] (* T. D. Noe, Oct 23 2012 *)

Formula

a(n) = A218212(n) - A218212(n-1)

Extensions

a(13)-a(21) from Chai Wah Wu, Feb 12 2018
a(2) changed back to 0 by Chai Wah Wu and N. J. A. Sloane, Feb 13 2018

A218213 Number of n-digit primes representable as sums of consecutive squares.

Original entry on oeis.org

1, 4, 13, 30, 69, 187, 519, 1401, 3889, 10861, 31640, 90735
Offset: 1

Views

Author

Martin Renner, Oct 23 2012

Keywords

Comments

There are no common representations of two, three or six squares for n < 13, so
a(n) = A218207(n) + A218209(n) + A218211(n); n < 13.

Crossrefs

Programs

  • Mathematica
    nn = 8; nMax = 10^nn; t = Table[0, {nn}]; Do[k = n; s = 0; While[s = s + k^2; s <= nMax, If[PrimeQ[s], t[[Ceiling[Log[10, s]]]]++];  k++], {n, Sqrt[nMax]}]; t (* T. D. Noe, Oct 23 2012 *)

Formula

a(n) = A218214(n) - A218213(n-1).
Showing 1-4 of 4 results.