login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A171444
Sum of three consecutive reversed primes.
1
10, 15, 23, 49, 113, 193, 194, 215, 137, 178, 100, 121, 122, 143, 204, 146, 187, 109, 130, 151, 172, 233, 215, 278, 481, 1103, 1903, 1913, 1933, 1163, 1583, 1793, 2603, 2023, 1843, 1263, 1873, 1493, 2103, 1523, 1343, 763, 1373, 2173, 1894, 1425
OFFSET
1,1
LINKS
FORMULA
a(n) = r(p(n)) + r(p(n+1)) + r(p(n+2)) where p(n) is the n-th prime number and r(n) is the number obtained by the reversal of the digits of n (e.g., r(1230) = 321).
EXAMPLE
(from primes 11, 13, and 17): 11 + 31 + 71 = 113;
(from primes 13, 17, and 19): 31 + 71 + 91 = 193;
(from primes 173, 179, and 181): 371 + 971 + 181 = 1523.
MATHEMATICA
r[n_] := FromDigits[Reverse[IntegerDigits[n]]]; Table[r[Prime[n]] + r[Prime[n+1]] + r[Prime[n+2]], {n, 50}]
CROSSREFS
Sequence in context: A050200 A034961 A207637 * A227371 A057990 A272779
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, Dec 09 2009
EXTENSIONS
More terms from Matthew Conroy, Dec 28 2010
STATUS
approved