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!)
A154721 Triangle read by rows in which row n lists 2n-1 terms: The pairs of noncomposite numbers equidistant to n, with 0's inserted, as shown below in the example. 17
0, 1, 0, 3, 1, 0, 0, 0, 5, 1, 0, 3, 0, 5, 0, 7, 0, 0, 3, 0, 0, 0, 7, 0, 0, 1, 0, 0, 0, 5, 0, 7, 0, 0, 0, 11, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 11, 0, 13, 0, 0, 3, 0, 5, 0, 0, 0, 0, 0, 11, 0, 13, 0, 0, 1, 0, 0, 0, 5, 0, 7, 0, 0, 0, 11, 0, 13, 0, 0, 0, 17 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
EXAMPLE
Triangle begins:
0
1 0 3
1 0 0 0 5
1 0 3 0 5 0 7
0 0 3 0 0 0 7 0 0
1 0 0 0 5 0 7 0 0 0 11
1 0 3 0 0 0 0 0 0 0 11 0 13
0 0 3 0 5 0 0 0 0 0 11 0 13 0 0
1 0 0 0 5 0 7 0 0 0 11 0 13 0 0 0 17
1 0 3 0 0 0 7 0 0 0 0 0 13 0 0 0 17 0 19
MAPLE
isnotcomp:=proc(n)return (n=1 or isprime(n)) end:
for n from 1 to 10 do for k from 1 to 2*n-1 do if(not k=n and (isnotcomp(k) and isnotcomp(2*n-k)))then print(k):else print(0):fi:od:od: # Nathaniel Johnston, Apr 18 2011
MATHEMATICA
T[n_, k_] := If[k != n && !CompositeQ[k] && !CompositeQ[2n - k], k, 0];
Table[T[n, k], {n, 1, 10}, {k, 1, 2n - 1}] // Flatten (* Jean-François Alcover, Dec 04 2017 *)
CROSSREFS
Sequence in context: A099725 A285118 A128208 * A350449 A185664 A300812
KEYWORD
easy,nonn,tabf
AUTHOR
Omar E. Pol, Jan 14 2009
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 29 23:45 EDT 2024. Contains 372114 sequences. (Running on oeis4.)