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!)
A205955 a(n) = prime(n) * (prime(n+2) - prime(n+1)). 1
4, 6, 20, 14, 44, 26, 68, 114, 46, 174, 124, 74, 164, 258, 282, 106, 354, 244, 134, 426, 292, 474, 664, 356, 194, 404, 206, 428, 1526, 452, 762, 262, 1370, 278, 894, 906, 628, 978, 1002, 346, 1790, 362, 764, 386, 2364, 2388, 844, 446, 908, 1374, 466, 2390 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(1) = prime(1)*(prime(3) - prime(2)) = 2*(5-3) = 4.
a(2) = prime(2)*(prime(4) - prime(3)) = 3*(7-5) = 6.
a(3) = prime(3)*(prime(5) - prime(4)) = 5*(11-7) = 20.
MAPLE
A205955:=n->ithprime(n)*(ithprime(n+2)-ithprime(n+1)): seq(A205955(n), n=1..100); # Wesley Ivan Hurt, May 02 2017
MATHEMATICA
#1 (#3 - #2) & @@ # & /@ Partition[Prime@ Range@ 54, 3, 1] (* Michael De Vlieger, May 03 2017 *)
PROG
(PARI) a(n) = prime(n) * (prime(n+2) - prime(n+1)) \\ Michel Marcus, Aug 06 2013
CROSSREFS
Sequence in context: A367864 A354204 A123169 * A023863 A024480 A066193
KEYWORD
nonn,easy
AUTHOR
Umut Uludag, Feb 02 2012
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 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)