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.

A261464 a(n) = prime(n+2)^3 - prime(n+1)^2 + prime(n).

This page as a plain text file.
%I A261464 #12 Sep 08 2022 08:46:13
%S A261464 118,321,1287,2083,4755,6583,11823,23879,28973,49721,67583,77863,
%T A261464 102015,146711,202617,223553,297101,353483,384043,487781,565619,
%U A261464 698159,904835,1020981,1082623,1214535,1283683,1431123,2035723,2232075,2554319,2666981,3288765
%N A261464 a(n) = prime(n+2)^3 - prime(n+1)^2 + prime(n).
%F A261464 a(n) = prime(n+2)^3 - prime(n+1)^2 + prime(n).
%e A261464 a(1) = 5^3 - 3^2 + 2 = 118.
%t A261464 Table[Prime[n + 2]^3 - Prime[n + 1]^2 + Prime[n], {n, 60}] (* _Vincenzo Librandi_, Aug 20 2015 *)
%o A261464 (Magma) [NthPrime(n+2)^3-NthPrime(n+1)^2+NthPrime(n): n in [1.. 35]]; // _Vincenzo Librandi_, Aug 20 2015
%o A261464 (PARI) vector(40, n, prime(n+2)^3-prime(n+1)^2+prime(n)) \\ _Michel Marcus_, Aug 20 2015
%Y A261464 Cf. A136612, A069482, A129701.
%K A261464 nonn
%O A261464 1,1
%A A261464 _Altug Alkan_, Aug 20 2015
%E A261464 More terms from _Vincenzo Librandi_, Aug 20 2015