A235397 The first term of the least sequence of n consecutive Moran numbers.
18, 152, 3031, 21481224, 25502420, 4007565001480, 2196125475223740, 905295493763807066010
Offset: 1
Examples
a(6) = 4007565001480 because 4007565001480 = 40 * 100189125037, 4007565001481 = 41 * 97745487841, 4007565001482 = 42 * 95418214321, 4007565001483 = 43 * 93199186081, 4007565001484 = 44 * 91081022761, 4007565001485 = 45 * 89057000033.
Links
- Giovanni Resta, Moran numbers
- Carlos Rivera, Puzzle 728. Consecutive Moran numbers, The Prime Puzzles & Problems Connection.
Programs
-
PARI
isA001101(n)=(k->denominator(k)==1&&isprime(k))(n/sumdigits(n)) a(n)=my(k=n); while(1, forstep(i=k,k-n+1,-1, if(!isA001101(i), k=i+n; next(2))); return(k-n+1)) \\ Charles R Greathouse IV, Jan 10 2014
Extensions
a(7)-a(8) from Giovanni Resta, Apr 27 2020
Comments