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!)
A073271 a(n) = floor( prime(n)*prime(n+2) / prime(n+1) ). 5
3, 4, 7, 8, 14, 14, 20, 23, 24, 34, 34, 38, 44, 48, 52, 54, 64, 64, 68, 76, 76, 84, 90, 92, 98, 104, 104, 110, 122, 116, 132, 132, 146, 140, 154, 156, 160, 168, 172, 174, 188, 182, 194, 194, 208, 210, 214, 224, 230, 234, 234, 248, 246, 256, 262, 264, 274, 274 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A000040(n) < a(n) < A000040(n+2);
Conjecture: a(n) is even except for a(1)=3, a(3)=7 and a(8)=23 (A073272(n)=0).
Conjecture: when a(n) = a(n+1) then A001223(n+1) = A001223(n) + A001223(n+2). - Gionata Neri, May 31 2015
LINKS
EXAMPLE
A000040(10)*A000040(12)/A000040(11) = 29*37/31 = 1073/31 = (34*31+19)/31, therefore a(10)=34; A073272(10) = A000040(11)-a(10) = 31-34 = -3.
MATHEMATICA
Table[Floor[Prime[n] Prime[n + 2] / Prime[n + 1]], {n, 60}] (* Vincenzo Librandi, May 31 2015 *)
Floor[(#[[1]]#[[3]])/#[[2]]]&/@Partition[Prime[Range[60]], 3, 1] (* Harvey P. Dale, Jun 07 2021 *)
PROG
(PARI) vector(100, n, (prime(n)*prime(n+2))\prime(n+1)) \\ Michel Marcus, May 31 2015
(Magma) [Floor(NthPrime(n)*NthPrime(n+2) / NthPrime(n+1)): n in [1..60]]; // Vincenzo Librandi, May 31 2015
CROSSREFS
Sequence in context: A357644 A120355 A114210 * A117471 A217135 A323247
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jul 22 2002
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 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)