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.

A255005 a(n) = the digit sum of prime(n) + the digit product of prime(n).

This page as a plain text file.
%I A255005 #17 Sep 08 2022 08:46:11
%S A255005 4,6,10,14,3,7,15,19,11,29,7,31,9,19,39,23,59,13,55,15,31,79,35,89,79,
%T A255005 2,4,8,10,8,24,8,32,40,50,12,48,28,56,32,80,18,20,40,80,100,6,19,39,
%U A255005 49,26,68,15,18,84,47,125,24,114,27,61,68,10,8,16,32,16
%N A255005 a(n) = the digit sum of prime(n) + the digit product of prime(n).
%H A255005 Harvey P. Dale, <a href="/A255005/b255005.txt">Table of n, a(n) for n = 1..1000</a>
%F A255005 a(n) = A007605(n) + A053666(n).
%e A255005 Prime(5)=11 and (1*1) + (1+1) = 3 so a(5) = 3.
%e A255005 Prime(10)=29 and (2*9) + (2+9) = 29 so a(10) = 29.
%t A255005 Table[Plus @@ IntegerDigits[Prime[n]] + Times @@ IntegerDigits[Prime[n]], {n, 80}] (* _Bruno Berselli_, Feb 12 2015 *)
%t A255005 dsdp[n_]:=Module[{idpn=IntegerDigits[Prime[n]]},Total[idpn]+Times@@idpn]; dsdp/@Range[70] (* _Harvey P. Dale_, Mar 05 2017 *)
%o A255005 (Magma) [&*Intseq(NthPrime(n))+&+Intseq(NthPrime(n)): n in [1..80]];
%Y A255005 Subsequence of A061762.
%Y A255005 Cf. A007605, A053666.
%K A255005 nonn,base
%O A255005 1,1
%A A255005 _Vincenzo Librandi_, Feb 12 2015