[go: up one dir, main page]

login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A089020 First value y satisfying x^2 - 3*y^2 = d^2, where d=A072330(n). 8
1, 4, 3, 7, 5, 8, 11, 16, 20, 7, 13, 20, 12, 44, 9, 51, 17, 52, 57, 55, 19, 11, 16, 28, 72, 91, 36, 65, 69, 13, 23, 68, 20, 25, 105, 15, 88, 76, 44, 120, 145, 40, 87, 119, 29, 85, 24, 17, 155, 132, 93, 31, 44, 104, 52, 92, 95, 19, 140, 200, 28, 105, 231, 35, 100, 185, 105, 120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Jean-François Alcover, Table of n, a(n) for n = 1..1000
MATHEMATICA
terms = 1000;
nmax = 12 terms;
okQ[n_] := AllTrue[FactorInteger[n][[All, 1]], MatchQ[Mod[#, 12], 1|11]&];
A072330 = Select[Range[nmax], okQ];
a[n_] := Module[{a, b, c, d, p}, d = If[n <= Length[A072330], A072330[[n]], Print["nmax = ", nmax, " insufficient"]; Exit[]]; If[n == 1, 1, For[b = 2 d, True, b++, a = b - d; c = b + d; p = (a + b + c)/2; If[IntegerQ[p] && IntegerQ[Sqrt[p (p - a) (p - b) (p - c)]] && GCD[a, b, c] == 1, Return[ Sqrt[b^2 - 4 d^2]/(2 Sqrt[3])]]]]];
a /@ Range[terms] (* Jean-François Alcover, Mar 07 2020 *)
CROSSREFS
For corresponding x see A089019.
Sequence in context: A365214 A257876 A093051 * A046560 A205392 A131413
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Nov 04 2003
EXTENSIONS
Extended by Ray Chandler, Jul 03 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 1 06:23 EDT 2024. Contains 375575 sequences. (Running on oeis4.)