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.

A208882 Number of representations of square of prime(n) as a^2 + b^2 + c^2 with 0 < a <= b <= c.

Original entry on oeis.org

0, 1, 0, 1, 2, 1, 2, 3, 3, 3, 4, 4, 5, 6, 6, 6, 8, 7, 9, 9, 9, 10, 11, 11, 12, 12, 13, 14, 13, 14, 16, 17, 17, 18, 18, 19, 19, 21, 21, 21, 23, 22, 24, 24, 24, 25, 27, 28, 29, 28, 29, 30, 30, 32, 32, 33, 33, 34, 34, 35, 36, 36, 39, 39, 39, 39, 42, 42, 44, 43, 44
Offset: 1

Views

Author

Zak Seidov, Mar 02 2012

Keywords

Comments

Almost monotonically increasing sequence, only rarely a(n) <= a(n-1), contrary to case of n instead of prime(n) (A181786).

Examples

			a(2)=1 because prime(2)=3 and 3^2 = 1^2 + 2^2 + 2^2,
a(4)=1 because prime(4)=7 and 7^2 = 2^2 + 3^2 + 6^2,
a(5)=2 because prime(5)=11 and 11^2 = 2^2 + 6^2 + 9^2 = 6^2 + 6^2 + 7^2.
		

Crossrefs

Programs

  • Mathematica
    Table[Length[FindInstance[{Prime[n]^2==a^2+b^2+c^2,0Harvey P. Dale, Mar 06 2020 *)