cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A114337 Primes which are 1/3 of the cumulative sum of factorials of primes, if 1 is used as the zeroth prime.

This page as a plain text file.
%I A114337 #12 Aug 01 2015 11:52:58
%S A114337 3,43,1723,13307323
%N A114337 Primes which are 1/3 of the cumulative sum of factorials of primes, if 1 is used as the zeroth prime.
%C A114337 No more primes. Starting with a(14) = (1! + ... + 43!)/3 the sum always has a factor of 47.
%F A114337 Defining prime(0)= 1: a(n) = (1/3)*Sum_{i=0..n}A000142(A000040(i+1)) iff in A000040. a(n) = (1/3)*Sum_{i=0..n}prime(i+1)! iff in A000040.
%e A114337 prime(0)! = 1! = 1; prime(1)! = 2! = 2.
%e A114337 a(1) = (1! + 2! + 3!)/3 = 9/3 = 3.
%e A114337 a(2) = (1! + 2! + 3! + 5!)/3 = 129/3 = 43.
%e A114337 a(3) = (1! + 2! + 3! + 5! + 7!)/3 = 5169/3 = 1723.
%e A114337 a(4) = (1! + 2! + 3! + 5! + 7! + 11!)/3 = 39921969/3 = 13307323.
%t A114337 f[n_] := (1 + Plus @@ ((Prime@ Range@ n)!))/3; Select[f /@ Range@ 43, PrimeQ@# &] (* _Robert G. Wilson v_, Apr 30 2009 *)
%Y A114337 Cf. A000040, A000142.
%K A114337 fini,full,nonn
%O A114337 1,1
%A A114337 _Jonathan Vos Post_, Feb 07 2006