OFFSET
0,6
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..11627 (rows 0 <= n <= 150).
EXAMPLE
Row 3 of the triangle is [1,1,2,3]. Adding 0 to these gives [1,1,2,3], of which 2 terms are primes. Adding 1 to these gives [2,2,3,4], of which 3 terms are primes. Adding 2 to these gives [3,3,4,5], of which 3 terms are primes. Adding 3 to these gives [4,4,5,6], of which 1 term is prime. Adding 4 to these gives [5,5,6,7], of which 3 terms are primes. So row 4 is [2,3,3,1,3].
MAPLE
A114919 := proc(rowmax) local a, n, m, t ; a := matrix(rowmax, rowmax) ; a[1, 1] := 0 ; for n from 2 to rowmax do for m from 1 to n do a[n, m] := 0 ; for t from 1 to n-1 do if isprime( m-1+a[n-1, t] ) then a[n, m] := a[n, m]+1 ; fi ; od ; od ; od ; RETURN(a) ; end: rowmax := 15 : a := A114919(rowmax) : for n from 1 to rowmax do for m from 1 to n do printf("%d, ", a[n, m]) ; od ; od ; # R. J. Mathar, Mar 13 2007
MATHEMATICA
NestList[Function[w, Map[Function[k, Count[Map[k + # &, w], _?PrimeQ]], Range[0, Length@ w]]], {0}, 13] // Flatten (* Michael De Vlieger, Sep 06 2017 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Leroy Quet, Jan 07 2006
EXTENSIONS
More terms from R. J. Mathar, Mar 13 2007
STATUS
approved