A111510 If n is even then a(n) is the nearest integer to Pi^n/Zeta(n), otherwise a(n) is the nearest integer to (Pi^n - n*e)/Zeta(n).
6, 19, 90, 282, 945, 2976, 9450, 29725, 93555, 294029, 924042, 2903286, 9121612, 28657229, 90030845, 282842357, 888579011, 2791558571, 8769948430, 27551618646, 86555983553, 271923674412, 854273468992, 2683779334264
Offset: 2
Keywords
Examples
a(n) = d where d is the integer divisor of Pi^n for even n and (Pi^n)-ne for odd n having a solution closest to Zeta(n). a(2) = 6 then (Pi^2)/6 = Zeta(2); a(3)=19, (Pi^3-3e)/19 approx = Zeta(3); a(4)=90, (Pi^4)/90 = Zeta(4); and the only special case the author has found where ((Pi^4)-4e)/80 approx = Zeta(4).
Links
- Vincenzo Librandi, Table of n, a(n) for n = 2..1000
Programs
-
Mathematica
f[n_] := Round@If[EvenQ@n, Pi^n/Zeta@n, (Pi^n - n*E)/Zeta@n]; Table[ f@n, {n, 2, 26}] (* Robert G. Wilson v, Nov 18 2005 *)
Extensions
Corrected and extended by Robert G. Wilson v, Nov 18 2005
Corrections from Marco Matosic, Mar 27 2006
Definition clarified by Omar E. Pol, Jan 02 2009
Comments