The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A094285 Right leading diagonal of the triangle described in comments. 0
2, 5, 7, 13, 13, 31, 31, 59, 59, 59, 59, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 24671 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Below is the triangle in which the left half of the n-th row contains numbers from 2 to n and the mirror image about the leading column contains numbers in increasing order with the same prime signature.
Initial triangle starts:
2;
2 3;
2 3 4;
2 3 4 5 9;
Final triangle starts:
2;
2 3 5;
2 3 4 5 7;
2 3 4 5 9 11 13;
2 3 4 5 6 7 9 11 13;
2 3 4 5 6 7 10 11 25 29 31;
...
All terms of the sequence are primes since they are numbers with same prime signature as the numbers of the first column, that are all equal to 2, a prime.
LINKS
EXAMPLE
In the row for n = 5 the terms corresponding to 4,3,2 are 9,11,13 respectively.
PROG
(PARI) findsps(last, ps) = {new = last+1; while(factor(new)[, 2] != ps, new++); new; }
a(n) = {last = n; orig = last - 1; for (i = 1, n-1, ps = factor(orig)[, 2]; last = findsps(last, ps); orig --; ); return (last); } \\ _Michel Marcus_, Feb 05 2014
CROSSREFS
Cf. A093496.
Sequence in context: A092792 A238336 A083271 * A121218 A371239 A266001
KEYWORD
nonn
AUTHOR
_Amarnath Murthy_, Apr 27 2004
EXTENSIONS
Edited and extended by _Michel Marcus_, Feb 05 2014
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 May 13 03:50 EDT 2024. Contains 372497 sequences. (Running on oeis4.)