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.

A124180 Prime(R(n)) where Prime(i) is the i-th prime and R(n) is the value of the reverse of the digits of n.

This page as a plain text file.
%I A124180 #5 Oct 01 2013 21:35:19
%S A124180 2,3,5,7,11,13,17,19,23,2,31,73,127,179,233,283,353,419,467,3,37,79,
%T A124180 131,181,239,293,359,421,479,5,41,83,137,191,241,307,367,431,487,7,43,
%U A124180 89,139,193,251,311,373,433,491,11,47,97,149,197,257,313,379,439,499,13,53
%N A124180 Prime(R(n)) where Prime(i) is the i-th prime and R(n) is the value of the reverse of the digits of n.
%e A124180 Rp(17) = 71. Prime(71)= 353.
%o A124180 (PARI) g(n) = for(x=1,n,y=revi(prime(x));print1(prime(y)",")) revi(str) = \ Get the integer of the reverse of the input string { local(tmp,s,j); tmp = Vec(Str(str)); s=""; forstep(j=length(tmp),1,-1, s=concat(s,tmp[j])); return(eval(s)) }
%K A124180 easy,nonn,base
%O A124180 1,1
%A A124180 _Cino Hilliard_, Dec 04 2006