The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A171618 Number of ways of writing n=k1+k2 with k1 and k2 in A167707. 1
1, 1, 1, 1, 1, 2, 1, 3, 2, 4, 3, 3, 3, 5, 4, 6, 5, 6, 5, 7, 6, 8, 6, 8, 8, 8, 9, 9, 10, 10, 9, 11, 10, 12, 12, 13, 11, 12, 13, 13, 15, 14, 14, 15, 14, 16, 14, 17, 17, 16, 17, 17, 18, 18, 19, 18, 19, 19, 21, 21, 19, 21, 20, 22, 24, 23, 22, 22, 23, 24, 25, 25, 24, 25, 24, 27, 26, 28, 27 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
EXAMPLE
a(31)=9 because 31 = 0 + 31 = 3 + 28 = 5 + 26 = 7 + 24 = 9 + 22 = 10 + 21 = 11 + 20 = 14 + 17 = 15 + 16.
MAPLE
isA001097 := proc(n) isprime(n) and (isprime(n+2) or isprime(n-2)) ; end proc:
isA164276 := proc(n) not isprime(n) and ( not isprime(n+1) or not isprime(n-1) ) ; end proc: isA167707 := proc(n) isA001097(n) or isA164276(n) ; end proc:
A167707 := proc(n) option remember; if n = 1 then 0; else for a from procname(n-1)+1 do if isA167707(a) then return a; end if; end do; end if; end proc:
A171618 := proc(n) a := 0 ; for i from 1 do p := A167707(i) ; q := n-p ; if q < p then return a ; end if; if isA167707(q) then a := a+1 ; end if; if q <= p then return a ; end if; end do: end proc:
seq(A171618(n), n=1..120) ; # R. J. Mathar, May 22 2010
MATHEMATICA
isA001097[n_] := PrimeQ[n] && (PrimeQ[n+2] || PrimeQ[n-2]);
isA164276[n_] := !PrimeQ[n] && (!PrimeQ[n+1] ||!PrimeQ[n-1]);
isA167707[n_] := isA001097[n] || isA164276[n];
A167707[n_] := A167707[n] = If[n == 1, 0, For[a = A167707[n-1]+1, True, a++, If[isA167707[a], Return@a]]];
A171618[n_] := Module[{a}, a = 0; For[i = 1, True, i++, p = A167707[i]; q = n-p; If[q < p, Return@a]; If[isA167707[q], a++]; If[q <= p, Return@a]]];
Table[A171618[n], {n, 1, 120}] (* Jean-François Alcover, Feb 23 2024, after R. J. Mathar *)
CROSSREFS
Sequence in context: A224989 A124876 A188901 * A344096 A253138 A283994
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(29) and a(34) corrected and sequence extended by R. J. Mathar, May 22 2010
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 May 12 22:15 EDT 2024. Contains 372496 sequences. (Running on oeis4.)