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!)
A212197 Numbers k that divide the 3k-th Clausen number. 0
1, 2, 6, 14, 42, 114, 602, 798, 1806, 5334, 34314, 101346, 229362, 4357878, 9786714, 12198858, 168241542, 185947566, 231778302, 524550894 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The classical Clausen numbers are given in A141056. See A160014 for generalizations. Related sequences are A014117 and A106741.
LINKS
Thomas Clausen, Theorem. Lehrsatz aus einer Abhandlung ueber die Bernoullischen Zahlen, Astr. Nachr. 17 (22) (1840), 351-352.
MATHEMATICA
(* This program is not convenient for more than 15 terms *) c[n_] := Sum[Boole[PrimeQ[d+1]]/(d+1), {d, Divisors[n]}] // Denominator; Reap[For[n = 1, n < 10^7, n++, If[Divisible[c[3*n], n], Print[n]; Sow[n]]]][[2, 1]] (* Jean-François Alcover, May 21 2013 *)
PROG
(PARI)
A212197_list(searchlimit) =
{
for (n=1, searchlimit,
p = 1;
fordiv(3*n, d,
r = d + 1;
if (isprime(r), p = p*r; )
);
if (Mod(p, n) == 0, print1(n, ", "));
);
}
CROSSREFS
Sequence in context: A123383 A281707 A225172 * A151414 A151386 A151399
KEYWORD
nonn,more
AUTHOR
Peter Luschny, May 05 2012
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 25 13:12 EDT 2024. Contains 371969 sequences. (Running on oeis4.)