A140171 Numbers n such that n=prime(prime(d_1!+d_2!+...+d_k!)) where d_1d_2...d_k is the decimal expansion of n.
18303877, 91744613
Offset: 1
Examples
prime(prime(9!+1!+7!+4!+4!+6!+1!+3!))=91744613.
Crossrefs
Cf. A140172.
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.
prime(prime(9!+1!+7!+4!+4!+6!+1!+3!))=91744613.
37^3 + 17^3 = 6*21^3.
x0:=37:y0:=17:z0:=21: for p from 1 to 5 do: x1:=x0*(x0^3+ 2*y0^3):y1:=-y0*(2*x0^3+ y0^3):z1:=z0*(x0^3- y0^3): print(z1) : x0 :=x1 :y0 :=y1 :z0 :=z1 :od :
Comments