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”).
%I #13 Nov 19 2015 16:52:59
%S 9,64,7776,2097152,743008370688,793714773254144,
%T 2185911559738696531968,5242880000000000000000000,
%U 55572324035428505185378394701824,6863037736488300000000000000000000000000000
%N (1+prime(n))^prime(n).
%C Sum of reciprocals rapidly converges to 0.1268651887726617214821302614..
%t (1+#)^#&/@Prime[Range[20]] (* _Harvey P. Dale_, Nov 19 2015 *)
%o (PARI) ptopp1(n) = { local(x,z,sr=0); forprime(x=1,n, z=(x+1)^x; sr+=1./z; print1(z","); ); print(); print(sr) }
%o (Maxima) A104127(n) := block(
%o return((1+A000040(n))^A000040(n))
%o )$
%o for n : 1 thru 20 do printf(true,"~d,",A104127(n)) ; /* R. J. Mathar, Feb 27 2012 */
%K easy,nonn
%O 1,1
%A _Cino Hilliard_, Mar 06 2005
%E Definition (which equaled A078422) corrected and dummy variables in PARI program removed by _R. J. Mathar_, Oct 23 2009