A113244 Prime differences of tetranacci numbers.
2, 3, 7, 11, 13, 41, 79, 107, 179, 193, 293, 397, 769, 1489, 2099, 2843, 2857, 5507, 5521, 9181, 10463, 10663, 10667, 19079, 39619, 76423, 126743, 146539, 147283, 147311, 281081, 283949, 547229, 771073, 3919171, 3919543, 3919943, 7555879, 7555927, 10644589, 14564477
Offset: 1
Examples
a(1) = 2 because 4 - 2 = 2 where 4 and 2 are tetranacci numbers. a(2) = 3 because 4 - 1 = 3 where 4 and 1 are tetranacci numbers. a(3) = 7 because 8 - 1 = 7 where 8 and 1 are tetranacci numbers. a(4) = 11 because 15 - 4 = 11 where 15 and 4 are tetranacci numbers. a(5) = 13 because 15 - 2 = 13 where 15 and 2 are tetranacci numbers.
Programs
-
Maple
isA113244 := proc(n) isprime(n) and isA113243(n) ; end proc: for n from 1 do p := ithprime(n) ; if isA113244(p) then printf("%d\n",p) ; end if; end do: # R. J. Mathar, Oct 04 2014
Formula
Extensions
281081 inserted by R. J. Mathar, Oct 04 2014
Comments