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!)
A078190 Primes of the form A004154(n) - 1. 4
5, 23, 11, 71, 503, 62270207, 871782911, 121645100408831, 243290200817663, 304888344611713860501503, 137637530912263450463159795815809023 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
More precisely, scan A004154, subtract 1 and record the answer if it is a prime. The sequence is not monotonic.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..17
MAPLE
A004154 := proc(n) option remember ; local m ; if n <= 1 then RETURN(1) ; else m := A004154(n-1)*n ; while m mod 10 = 0 do m := m /10 ; end ; RETURN(m) ; fi ; end: n := 1 ; while true do f := A004154(n) : if isprime(f-1) then printf("%d, ", f-1) ; fi ; n := n+1 : od : # R. J. Mathar, Feb 27 2007
PROG
(PARI) v=[]; for(n=1, 500, if(ispseudoprime(t=n!/10^valuation(n!, 5)-1), v=concat(v, t))); v \\ Charles R Greathouse IV, Feb 14 2011
CROSSREFS
Sequence in context: A317679 A054415 A156328 * A081319 A177242 A233756
KEYWORD
nonn
AUTHOR
Cino Hilliard, Dec 23 2002
EXTENSIONS
More terms from R. J. Mathar, Feb 27 2007
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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)