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!)
A289398 Least integer m > n such that (n^2 + m^2)/2 is a square. 2
7, 14, 21, 28, 35, 42, 17, 56, 63, 70, 77, 84, 91, 34, 105, 112, 31, 126, 133, 140, 51, 154, 47, 168, 175, 182, 189, 68, 203, 210, 49, 224, 231, 62, 85, 252, 259, 266, 273, 280, 113, 102, 301, 308, 315, 94, 79, 336, 71, 350, 93, 364, 371, 378, 385, 136, 399, 406, 413, 420 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
From first 100 terms, in 65 cases a(n) = 7*n. In general, a(n) <= 7*n.
From Robert Israel, Jul 07 2017: (Start)
For any p in A042999, a(n) == 0 (mod p) if and only if n == 0 (mod p), with a(p*k) = p*a(k).
Thus if n = m*r where all prime factors of m are in A042999, a(n) = m*a(r).
In particular, if all prime factors of n are in A042999, then a(n) = 7*n.
Conjecture: this is "if and only if".
(End)
Alternatively: A306236(n) is the smallest integer m > n with integer j > m that makes n^2, m^2 and j^2 an arithmetic progression. This is the sequence of j. - Jinyuan Wang, Feb 09 2019.
LINKS
EXAMPLE
a(1)=7: (1^2 + 7^2)/2 = 5^2;
a(7)=17: (7^2 + 17^2)/2 = 5^2.
MAPLE
f:= proc(n) local m; for m from n+2 by 2 do if issqr((n^2+m^2)/2) then return m fi od end proc:
map(f, [$1..100]); # Robert Israel, Jul 07 2017
MATHEMATICA
n=0; Table[n++; m=n+1; While[!IntegerQ[Sqrt[(n^2+m^2)/2]], m++]; m, {100}]
PROG
(PARI) a(n) = my(m=n+1); while(!issquare((n^2+m^2)/2), m++); m; \\ Michel Marcus, Jul 07 2017
CROSSREFS
Sequence in context: A282147 A283444 A109048 * A044892 A004959 A020646
KEYWORD
nonn,look
AUTHOR
Zak Seidov, Jul 05 2017
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 April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)