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.

A061463 Numerator of 1 + 1/(2^2) + 1/(3^3) + ... 1/(n^n).

This page as a plain text file.
%I A061463 #4 Jul 26 2018 18:55:31
%S A061463 0,1,5,139,8923,27891287,753077249,620192080073207,
%T A061463 40644910035811590827,21600371677519118879091707,
%U A061463 67501161497474683459322666743,19258869155079686765079369534624940189973
%N A061463 Numerator of 1 + 1/(2^2) + 1/(3^3) + ... 1/(n^n).
%e A061463 1, 5/4, 139/108, 8923/6912,...
%p A061463 summ := 0; for n from 1 to 15 do printf("%d ", numer(summ)); if (1 = 1) then summ := summ + 1/n^n: end if; od;
%t A061463 Join[{0},Accumulate[Table[1/n^n,{n,15}]]]//Numerator (* _Harvey P. Dale_, Jul 26 2018 *)
%Y A061463 Cf. A061464.
%K A061463 nonn,frac,easy
%O A061463 0,3
%A A061463 _Amarnath Murthy_, May 04 2001
%E A061463 More terms from Winston C. Yang (winston(AT)cs.wisc.edu), May 19 2001