|
Search: id:A046869
|
|
|
| A046869 |
|
Good primes (version 1): p(n)^2 > p(n-1)*p(n+1). |
|
+0 8
|
|
| 5, 11, 17, 29, 37, 41, 53, 59, 67, 71, 79, 97, 101, 107, 127, 137, 149, 157, 163, 173, 179, 191, 197, 211, 223, 227, 239, 251, 257, 263, 269, 277, 281, 307, 311, 331, 347, 367, 373, 379, 397, 419, 431, 439, 457, 461, 479, 487, 499, 521, 541
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
Also called geometrically strong primes. - Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Mar 08 2002
The idea can be extended by defining a geometrically strong prime of order k to be a prime that is greater than the geometric mean of r neighbors on both sides for all r = 1 to k but not for r = k+1. Similar generalizations can be applied to the sequence A051634. - Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Mar 08 2002
|
|
REFERENCES
|
R. K. Guy, Unsolved Problems in Number Theory, Section A14.
|
|
LINKS
|
T. D. Noe, Table of n, a(n) for n=1..10000
|
|
EXAMPLE
|
37 is a member as 37^2 = 1369 > 31*41= 1271.
|
|
MAPLE
|
with(numtheory): a := [ ]: P := [ ]: M := 300: for i from 2 to M do if p(i)^2>p(i-1)*p(i+1) then a := [ op(a), i ]; P := [ op(P), p(i) ]; fi; od: a; P;
|
|
MATHEMATICA
|
Do[ If[ Prime[n]^2 > Prime[n - 1]*Prime[n + 1], Print[ Prime[n] ] ], {n, 2, 100} ]
|
|
CROSSREFS
|
Cf. A051634, A051635, A006562, A046868, A028388.
Sequence in context: A089110 A023489 A108294 this_sequence A028388 A067606 A118625
Adjacent sequences: A046866 A046867 A046868 this_sequence A046870 A046871 A046872
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
njas
|
|
EXTENSIONS
|
Corrected and extended by Robert G. Wilson v (rgwv(AT)rgwv.com), Dec 06 2000
Edited by njas at the suggestion of Giovanni Resta, Aug 20 2007
|
|
|
Search completed in 0.006 seconds
|