login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A204676
a(n) = n! * (prime(n+1) + prime(n)) / (prime(n+1) - prime(n)).
1
5, 8, 36, 108, 1440, 5400, 90720, 423360, 3144960, 108864000, 452390400, 9340531200, 261534873600, 1961511552000, 21794572800000, 390558744576000, 21341245685760000, 136583972388864000, 4196755964104704000, 175168944588718080000
OFFSET
1,1
COMMENTS
For n >= 3 digital roots of terms appear to be equal 9, which means terms are divisible by 9. - Alexander R. Povolotsky, Jun 17 2012
MATHEMATICA
Table[n! (Prime[n+1] + Prime[n])/(Prime[n+1] - Prime[n]), {n, 20}] (* T. D. Noe, Jan 18 2012 *)
PROG
(PARI) for(n=1, 25, print1(n! * (prime(n+1) + prime(n)) / (prime(n+1) - prime(n)), ", ")) \\ G. C. Greubel, Feb 25 2017
CROSSREFS
Sequence in context: A032790 A187997 A188065 * A219947 A075273 A176859
KEYWORD
nonn
AUTHOR
STATUS
approved