login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A104132 Largest prime factor of pip(n)^pip(n)-1 where pip(n) is the n-th prime-index prime. 0
13, 71, 1806113, 2699538733, 568972471024107865287021434301977158534824481, 11122620356983250424531370838720413701966839654033 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

PROG

(PARI) piptopipm1(n) = { local(x, y); for(x=1, n, y=pip(x)^pip(x)-1; print1(bdiv(y)", "); ) } pip = { return(prime(prime(n))) } bdiv(n) = \ The largest prime divisor of n { local(x); x=ifactor(n); return(x[length(x)]) } ifactor(n, m=0) = \The vector of the integer factors of n with multiplicity. { local(f, j, k, flist); flist=[]; f=Vec(factor(n, m)); for(j=1, length(f[1]), for(k = 1, f[2][j], flist = concat(flist, f[1][j]) ); ); return(flist) }

CROSSREFS

Sequence in context: A060103 A141989 A159512 * A096913 A026916 A106173

Adjacent sequences:  A104129 A104130 A104131 * A104133 A104134 A104135

KEYWORD

easy,nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Mar 06 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 07:41 EST 2012. Contains 205998 sequences.