login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A372103 The first n primes interpreted as digits in base prime(n+1). 0
2, 13, 124, 3087, 64660, 3117065, 102223912, 7288040287, 1055368261516, 55582020481869, 10025310041948140, 1142621051584775677, 82818850586971127398, 11283315480373831581813, 2840525835404253352402868, 749937387889627635858910767, 75361395412432048667844493160 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = Sum_{k=0..n-1} prime(n-k)*prime(n+1)^k.
EXAMPLE
a(3) = 124 = 235_7.
a(5) = 64660 = 2357b_13.
MATHEMATICA
Table[Sum[Prime[n - k]*Prime[n + 1]^k, {k, 0, n - 1}], {n, 17}] (* Michael De Vlieger, Apr 19 2024 *)
PROG
(PARI) a(n) = sum(k=0, n-1, prime(n-k)*prime(n+1)^k); \\ Michel Marcus, Apr 19 2024
CROSSREFS
Sequence in context: A086630 A151361 A328008 * A073559 A074365 A071362
KEYWORD
nonn,base,easy
AUTHOR
Mitch Goldman, Apr 18 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 7 15:34 EDT 2024. Contains 374106 sequences. (Running on oeis4.)