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.

Previous Showing 31-32 of 32 results.

A116509 Values of c in a^2 + b^2 = c^2 where b - a = 31 and gcd(a,b)=1.

Original entry on oeis.org

41, 109, 221, 629, 1285, 3665, 7489, 21361, 43649, 124501, 254405, 725645, 1482781, 4229369, 8642281, 24650569, 50370905, 143674045, 293583149, 837393701, 1711127989, 4880688161, 9973184785, 28446735265, 58127980721
Offset: 1

Views

Author

Andras Erszegi (erszegi.andras(AT)chello.hu), Mar 21 2006

Keywords

Comments

b - a = 31 is the fifth term of A058529

Examples

			c(5)= 6*221-41=1285 and 893^2 + 924^2 = 1285^2 and 924-893=31 and gcd(893,924)=1
		

Programs

  • Mathematica
    RecurrenceTable[{a[1]==41,a[2]==109,a[3]==221,a[4]==629,a[n]==6a[n-2]-a[n-4]},a,{n,30}] (* Harvey P. Dale, Aug 01 2021 *)

Formula

c(1)=41,c(2)=109,c(3)=221,c(4)=629,c(n)=6*c(n-2)-c(n-4)

A253408 Values of difference z-y that solve equation x^2 + y^2 = z^2 + 2.

Original entry on oeis.org

-1, 1, 7, 17, 23, 31, 41, 47, 49, 71, 73, 79, 89, 97, 103, 113, 119, 127, 137, 151, 161, 167, 191, 193, 199, 217, 223, 233, 239, 241, 257, 263, 271, 281, 287, 289, 311, 313, 329, 337, 343, 353, 359, 367, 383, 391, 401, 409, 431, 433, 439, 449, 457, 463, 479, 487
Offset: 1

Views

Author

Carmine Suriano, Jan 05 2015

Keywords

Comments

All values are congruent to +-1 (mod 8).

Examples

			a(3)=7 because 25^2 + 41^2 = 48^2 + 2 and 48 - 41 = 7.
		

Crossrefs

Cf. A058529.

Formula

a(n)^2 mod 8 = 1.
a(n) = A058529(n-1), n>1.
Previous Showing 31-32 of 32 results.