A368290 a(n) is the length of the longest palindromic subsequence at symmetrically-spaced indices ending at a(n-1); a(1)=1.
1, 1, 2, 1, 3, 1, 3, 3, 2, 5, 1, 7, 1, 6, 1, 6, 3, 5, 5, 2, 4, 1, 7, 4, 2, 9, 1, 11, 1, 6, 5, 4, 5, 4, 3, 7, 3, 9, 5, 6, 7, 7, 7, 5, 9, 6, 5, 7, 5, 5, 8, 1, 11, 6, 7, 7, 9, 10, 1, 9, 9, 6, 9, 6, 11, 7, 13, 1, 12, 1, 14, 1, 16, 1, 17, 1, 19, 1, 14, 7, 9, 7, 11
Offset: 1
Keywords
Examples
a(10)=5 because we find the following length-5 palindromic subsequence at symmetric indices ending at i=a(n-1)=a(9)=2: S: 1,1,2,1,3,1,3,3,2 P: 2, 3,1,3, 2 a(14)=6 because of the following length-6 palindromic subsequence: S: 1,1,2,1,3,1,3,3,2,5,1,7,1 P: 1, 1, 3,3, 1, 1
Links
- Neal Gersh Tolunsky, Table of n, a(n) for n = 1..10000
- Neal Gersh Tolunsky, Ordinal transform of first 30000 terms.
- Neal Gersh Tolunsky, Graph of first 100000 terms.
Programs
-
PARI
{ for (n = 1, #a = vector(83, n, 1), for (k = 1, n-1, if (a[k] == a[n-1], a[n] = max(a[n], sum (i = k, n-1, a[i] == a[n-1+k-i]);););); print1 (a[n]", ");); } \\ Rémy Sigrist, Dec 20 2023
Extensions
More terms from Rémy Sigrist, Dec 20 2023
Comments