A077021 a(n) is the unique odd positive solution y of 2^n = 7x^2 + y^2.
1, 3, 5, 1, 11, 9, 13, 31, 5, 57, 67, 47, 181, 87, 275, 449, 101, 999, 797, 1201, 2795, 393, 5197, 5983, 4411, 16377, 7555, 25199, 40309, 10089, 90707, 70529, 110885, 251943, 30173, 473713, 534059, 413367, 1481485, 654751, 2308219, 3617721
Offset: 3
Keywords
References
- A. Engel, Problem-Solving Strategies, p. 126.
Links
- T. D. Noe, Table of n, a(n) for n=3..500
- Paul Barry, On a Central Transform of Integer Sequences, arXiv:2004.04577 [math.CO], 2020.
- Eric Weisstein's World of Mathematics, Diophantine Equations 2nd Powers
Programs
-
Mathematica
a = {}; Do[k = Expand[((1 + I Sqrt[7])/2)^n + ((1 - I Sqrt[7])/2)^n]; AppendTo[a, Abs[k]], {n, 1, 50}]; a (* Artur Jasinski, Oct 05 2008 *)
Formula
a(n+2) = abs(A002249(n)). - Artur Jasinski, Oct 05 2008 [With correction by Jianing Song, Nov 21 2018]
Comments