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!)
A255316 Distinct terms in triangle A255313, table read by rows. 6
3, 3, 5, 3, 5, 7, 5, 7, 5, 7, 11, 5, 7, 11, 13, 3, 5, 7, 11, 13, 3, 5, 7, 11, 13, 17, 3, 5, 7, 11, 13, 17, 19, 5, 7, 11, 13, 17, 19, 5, 7, 11, 13, 17, 19, 23, 5, 7, 11, 13, 17, 19, 23, 3, 7, 11, 13, 17, 19, 23, 3, 7, 11, 13, 17, 19, 23, 29, 3, 7, 11, 13, 17 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
See A255313.
MATHEMATICA
(* A is A088643 *)
A[n_, 1] := n;
A[n_, k_] := A[n, k] = For[m = n - 1, m >= 1, m--,
If[PrimeQ[m + A[n, k - 1]] &&
FreeQ[Table[A[n, j], {j, 1, k - 1}], m], Return[m]]];
T[n_] := T[n] = Union[2 MovingAverage[
Table[A[n+1, k], {k, 1, n+1}], {1, 1}]];
Array[T, 20] // Flatten (* Jean-François Alcover, Aug 02 2021 *)
PROG
(Haskell)
import Data.List (nub, sort)
a255316 n k = a255316_tabf !! (n-1) !! (k-1)
a255316_row n = a255316_tabf !! (n-1)
a255316_tabf = map (sort . nub) a255313_tabl
CROSSREFS
Cf. A255313, A255395 (row lengths), A255427 (row products).
Sequence in context: A185154 A204022 A131832 * A078587 A335074 A239931
KEYWORD
nonn,tabf
AUTHOR
Reinhard Zumkeller, Feb 22 2015
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 16 12:05 EDT 2024. Contains 371711 sequences. (Running on oeis4.)