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!)
A127921 1/12 of product of three numbers: n-th prime, previous and following number. 2
2, 10, 28, 110, 182, 408, 570, 1012, 2030, 2480, 4218, 5740, 6622, 8648, 12402, 17110, 18910, 25058, 29820, 32412, 41080, 47642, 58740, 76048, 85850, 91052, 102078, 107910, 120232, 170688, 187330, 214268, 223790, 275650, 286900, 322478, 360882, 388108, 431462 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Summation of products of partitions into two parts of prime(n): a(6) = (1*12) + (2*11) + (3*10) + (4*9) + (5*8) + (6*7) = 182. - César Aguilera, Feb 20 2018
LINKS
FORMULA
a(n) ~ (n log n)^3/12. - Charles R Greathouse IV, Feb 28 2018
MAPLE
a:= n-> (p->p*(p^2-1)/12)(ithprime(n)):
seq(a(n), n=2..40); # Alois P. Heinz, Mar 08 2022
MATHEMATICA
Table[(Prime[n] + 1) Prime[n](Prime[n] - 1)/12, {n, 2, 100}]
((#-1)#(#+1))/12&/@Prime[Range[2, 40]] (* Harvey P. Dale, Mar 08 2022 *)
PROG
(PARI) a(n, p=prime(n))=binomial(p+1, 3)/2 \\ Charles R Greathouse IV, Feb 28 2018
(Magma) [(NthPrime(n) + 1)*NthPrime(n)*(NthPrime(n) - 1)/12: n in [2..50]]; // G. C. Greubel, Apr 30 2018
CROSSREFS
Sequence in context: A104657 A000900 A124023 * A371943 A106184 A327696
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Feb 06 2007
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 May 8 11:33 EDT 2024. Contains 372332 sequences. (Running on oeis4.)